diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-01 21:14:35 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-01 21:14:35 +0100 |
commit | c396ae5f78222a7c3547ae5e2ce719ae143acb66 (patch) | |
tree | 8c593a5d4718ea399ce8e42bd826a660f86f3720 /src/CMakeLists.txt | |
parent | 34218886689a57004576486976038027732d8bcc (diff) |
start of text component
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c3f29da..b0b034f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,6 +9,7 @@ project(crepe C CXX) find_package(SDL2 REQUIRED) find_package(SDL2_image REQUIRED) +find_package(SDL2_ttf REQUIRED) find_package(SoLoud REQUIRED) find_package(GTest REQUIRED) find_package(whereami REQUIRED) @@ -24,6 +25,7 @@ target_include_directories(crepe target_link_libraries(crepe PRIVATE soloud PUBLIC SDL2 + PUBLIC SDL_ttf PUBLIC SDL2_image PUBLIC ${BERKELEY_DB} PUBLIC whereami |