19eefb3c
Steven de Ridder
Initial commit. d...
|
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
include(projectheader)
project_header(test_logutils)
include_directories( SYSTEM
${CMAKE_CURRENT_SOURCE_DIR}/../../src
)
include(compiler)
set(SRC_LIST
)
# add_executable( ${PROJECT_NAME}
# ${SRC_LIST}
# )
# target_link_libraries(
# ${PROJECT_NAME}
# )
# set_target_properties( ${PROJECT_NAME} PROPERTIES
# RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
# LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib
# ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/archive
# )
# include(installation)
# install_application()
|