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
14 lines
397 B
if (UNICODE)
|
|
add_definitions (-DUNICODE -D_UNICODE -UMBCS -U_MBCS)
|
|
endif (UNICODE)
|
|
|
|
message (STATUS "Threads: ${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
set (loggingserver_sources loggingserver.cxx)
|
|
|
|
message (STATUS "Sources: ${loggingserver_sources}")
|
|
|
|
add_executable (loggingserver ${loggingserver_sources})
|
|
target_link_libraries (loggingserver ${log4cplus})
|
|
|
|
install(TARGETS loggingserver DESTINATION bin)
|