Skip to content

Commit

Permalink
#84: WIP: add poco library (for directory watcher)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistafunk committed Mar 3, 2018
1 parent 62b4dc2 commit 4b34e2c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/conanfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@
cesdk/1.9.3786@esri-rd-zurich/stable
houdini/[>16.0.0,<16.5.0]@sidefx/stable
catch2/2.0.1@bincrafters/stable
Poco/1.8.1@pocoproject/stable

[options]
Poco:shared=False
Poco:enable_xml=False
Poco:enable_json=False
Poco:enable_mongodb=False
Poco:enable_pdf=False
Poco:enable_util=True
Poco:enable_net=True
Poco:enable_netssl=False
Poco:enable_netssl_win=False
Poco:enable_crypto=False
Poco:enable_data=False
Poco:enable_data_sqlite=False
Poco:enable_sevenzip=False
Poco:enable_zip=False
Poco:force_openssl=False

[generators]
cmake
5 changes: 5 additions & 0 deletions src/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ include(${CMAKE_BINARY_DIR}/conan.cmake)
conan_cmake_run(CONANFILE conanfile.txt BASIC_SETUP CMAKE_TARGETS BUILD missing)


function(pld_add_dependency_poco TGT)
target_link_libraries(${TGT} PRIVATE CONAN_PKG::Poco)
endfunction()


### PRT dependency

function(pld_add_dependency_prt TGT)
Expand Down
1 change: 1 addition & 0 deletions src/palladio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ endif()

pld_add_dependency_prt(${PROJECT_NAME})
pld_add_dependency_houdini(${PROJECT_NAME}) # also provides boost
pld_add_dependency_poco(${PROJECT_NAME})


### setup install target
Expand Down

0 comments on commit 4b34e2c

Please sign in to comment.