You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
397 B

  1. if (UNICODE)
  2. add_definitions (-DUNICODE -D_UNICODE -UMBCS -U_MBCS)
  3. endif (UNICODE)
  4. message (STATUS "Threads: ${CMAKE_THREAD_LIBS_INIT}")
  5. set (loggingserver_sources loggingserver.cxx)
  6. message (STATUS "Sources: ${loggingserver_sources}")
  7. add_executable (loggingserver ${loggingserver_sources})
  8. target_link_libraries (loggingserver ${log4cplus})
  9. install(TARGETS loggingserver DESTINATION bin)