blob: a0fa7cdcd089150645651863486d04cdc810cfa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/kernel/include
${CMAKE_BINARY_DIR}
)
##### executable
file( GLOB _bin_cpp_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp )
tde_add_library( ftview STATIC_PIC AUTOMOC
SOURCES ${_bin_cpp_files}
)
|