You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
715 B
CMake
26 lines
715 B
CMake
set(all_files
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/clog_impl.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/clog_impl.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/clog_impl.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/cdebug_logger.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/cdebug_logger.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/base.cmake
|
|
)
|
|
|
|
set(inc_files ${all_files})
|
|
set(src_files ${all_files})
|
|
set(ui_files ${all_files})
|
|
list(FILTER inc_files INCLUDE REGEX ".*.h$")
|
|
list(FILTER src_files INCLUDE REGEX ".*.cpp$")
|
|
list(FILTER ui_files INCLUDE REGEX ".*.ui$")
|
|
|
|
set(src_files ${src_files})
|
|
|
|
set(include_directory "${CMAKE_CURRENT_SOURCE_DIR}/../../gui/"
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../../thirdlibrary/secs/inc/
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../logic/)
|
|
|
|
|
|
|