diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-02 14:44:25 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-02 14:44:25 +0100 |
commit | 369e3d71aa79783d95166739cfa93a480defe6ea (patch) | |
tree | cc4e590da6d98fc891ce3488cc150ffa10173520 /CMakeLists.txt | |
parent | 815ec66a68c01dc4a8f0c5ec6c9193a71e7547e2 (diff) |
more cleanup + add give command to test things
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c71af78..fdbdfd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,20 +4,31 @@ set(CMAKE_CXX_STANDARD 20) set(CMAKE_EXPORT_COMPILE_COMMANDS 1) set(CMAKE_BUILD_TYPE Debug) +project(main CXX) + find_package(pugixml REQUIRED) +find_package(GTest REQUIRED) -project(main CXX) +add_library(backend STATIC) +target_include_directories(backend PUBLIC .) add_executable(main) - -target_include_directories(main PRIVATE .) +add_executable(test_main EXCLUDE_FROM_ALL) add_subdirectory(backend) add_subdirectory(frontend) +add_subdirectory(test) target_link_libraries(main + PRIVATE backend PUBLIC pugixml PUBLIC sqlite3 PUBLIC readline ) +target_link_libraries(test_main + PRIVATE gtest + PRIVATE gtest_main + PRIVATE backend +) + |