CMakeLists.txt 317 B

12345678
  1. set(SAMPLE_NAME "HTTPSTimeServer")
  2. set(LOCAL_SRCS "")
  3. aux_source_directory(src LOCAL_SRCS)
  4. add_executable( ${SAMPLE_NAME} ${LOCAL_SRCS} )
  5. set_target_properties( ${SAMPLE_NAME} PROPERTIES COMPILE_FLAGS ${RELEASE_CXX_FLAGS} )
  6. target_link_libraries( ${SAMPLE_NAME} PocoNetSSL PocoUtil PocoNet PocoXML PocoFoundation )