Commit 2dd858fc authored by Dominik Charousset's avatar Dominik Charousset

Evaluate CAF_NO_CURL_EXAMPLES in CMake file

parent d920c8dc
...@@ -51,9 +51,11 @@ if (NOT "${CAF_NO_PROTOBUF_EXAMPLES}" STREQUAL "yes") ...@@ -51,9 +51,11 @@ if (NOT "${CAF_NO_PROTOBUF_EXAMPLES}" STREQUAL "yes")
endif (PROTOBUF_FOUND) endif (PROTOBUF_FOUND)
endif () endif ()
#find_package(CURL) if (NOT "${CAF_NO_CURL_EXAMPLES}" STREQUAL "yes")
#if (CURL_FOUND) find_package(CURL)
# add_executable(curl_fuse curl/curl_fuse.cpp) if (CURL_FOUND)
# target_link_libraries(curl_fuse ${CMAKE_DL_LIBS} ${CAF_LIBRARY} ${PTHREAD_LIBRARIES} ${CURL_LIBRARY}) add_executable(curl_fuse curl/curl_fuse.cpp)
# add_dependencies(curl_fuse all_examples) target_link_libraries(curl_fuse ${CMAKE_DL_LIBS} ${CAF_LIBRARY} ${PTHREAD_LIBRARIES} ${CURL_LIBRARY})
#endif (CURL_FOUND) add_dependencies(curl_fuse all_examples)
endif (CURL_FOUND)
endif ()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment