diff options
Diffstat (limited to 'server-v1/CMakeLists.txt')
-rw-r--r-- | server-v1/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server-v1/CMakeLists.txt b/server-v1/CMakeLists.txt index d869f82..517de35 100644 --- a/server-v1/CMakeLists.txt +++ b/server-v1/CMakeLists.txt @@ -10,12 +10,12 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(Qt6 6.2 COMPONENTS Core Network Sql REQUIRED) find_package(doctest REQUIRED) +file(GLOB_RECURSE EpistmoolServer_SRC_HPP_FILES source/*.hpp) +file(GLOB_RECURSE EpistmoolServer_SRC_CPP_FILES source/*.cpp) qt_add_executable(EpistmoolServer - source/all_fwd.hpp - source/header_only.cpp - source/main.cpp + ${EpistmoolServer_SRC_HPP_FILES} + ${EpistmoolServer_SRC_CPP_FILES} ) -add_subdirectory(source/EpistmoolServer) target_include_directories(EpistmoolServer PRIVATE source) target_compile_definitions(EpistmoolServer PRIVATE |