diff --git a/CMakeLists.txt b/CMakeLists.txt index b7dbdf3..2221dfb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ project(ndn_consumer_producer_example) set(CMAKE_CXX_STANDARD 14) -add_executable(consumer consumer.cpp FacePool.h) +add_executable(consumer consumer.cpp) target_link_libraries(consumer pthread ndn-cxx boost_system) -add_executable(producer producer.cpp FacePool.h) +add_executable(producer producer.cpp) target_link_libraries(producer pthread ndn-cxx boost_system)