diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 18:41:30 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 18:41:30 +0100 |
commit | 8e3367b186e60eb1e33bf58a066823cb00a7566e (patch) | |
tree | c4038a31993767276efec5fa1b1a37dff3b79465 /src/CMakeLists.txt | |
parent | b7df77d6cc26cb9ee46891d7108f01734b3104dd (diff) | |
parent | 35ef3ba91ce9e00466508f2388f4c1dd2321b505 (diff) |
Merge branch 'master' into poc/audio-miniaudio
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0090188..b60a0cd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,14 +3,38 @@ cmake_minimum_required(VERSION 3.28) set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_STANDARD 20) set(CMAKE_EXPORT_COMPILE_COMMANDS 1) - -# enable debug features set(CMAKE_BUILD_TYPE Debug) -add_compile_definitions(DEBUG) project(crepe C CXX) -add_executable(main) +find_package(SDL2 REQUIRED) +find_package(SDL2_image REQUIRED) +find_package(SoLoud REQUIRED) +find_package(GTest REQUIRED) + +add_library(crepe SHARED) +add_executable(test_main EXCLUDE_FROM_ALL) + +target_include_directories(crepe + PUBLIC SYSTEM INTERFACE . +) + +target_link_libraries(crepe + PRIVATE soloud + PUBLIC SDL2 + PUBLIC SDL2_image +) add_subdirectory(crepe) +add_subdirectory(test) +add_subdirectory(example) + +install( + TARGETS crepe + FILE_SET HEADERS DESTINATION include/crepe +) +target_link_libraries(test_main + PRIVATE gtest_main + PUBLIC crepe +) |