diff options
author | Aki <please@ignore.pl> | 2023-03-13 00:15:45 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-04-05 19:40:50 +0200 |
commit | 6a962253fe0cc39183e2584948d5adec09639b7e (patch) | |
tree | 926a7dd9ce4ef2b8231545ae3c9cf98332e5524d | |
parent | 91f11e032eff6b2aec7b347000820f2f6e6e008a (diff) | |
download | kurator-6a962253fe0cc39183e2584948d5adec09639b7e.zip kurator-6a962253fe0cc39183e2584948d5adec09639b7e.tar.gz kurator-6a962253fe0cc39183e2584948d5adec09639b7e.tar.bz2 |
Use static raylib if available
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 55fdcc3..e07cd2c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,6 +8,7 @@ set(STEAM_APPID $ENV{STEAM_APPID} CACHE STRING "App ID for steam deployment") set(STEAM_DEPOTID_WINDOWS $ENV{STEAM_DEPOTID_WINDOWS} CACHE STRING "Steam Depot ID for Windows builds") set(STEAM_DEPOTID_LINUX $ENV{STEAM_DEPOTID_LINUX} CACHE STRING "Steam Depot ID for Linux builds") set(CMAKE_INSTALL_BINDIR .) +set(raylib_USE_STATIC_LIBS Yes) enable_testing() find_package(EnTT 3 REQUIRED) find_package(GTest 1 REQUIRED) |