summaryrefslogtreecommitdiffhomepage
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-03-08 00:19:55 -0500
committerrealtradam <[email protected]>2023-03-08 00:19:55 -0500
commit4b410af18ed7e76b42be1d2ab2ebdfe8e5bf97e8 (patch)
treeb6b20aa5470e240189c5e46288d9c261879d345c /CMakeLists.txt
parente58d0577634b1405a40a4b1ebd0a36323fa81970 (diff)
downloadRodeoKit-4b410af18ed7e76b42be1d2ab2ebdfe8e5bf97e8.tar.gz
RodeoKit-4b410af18ed7e76b42be1d2ab2ebdfe8e5bf97e8.zip
Continued cleanup and refactoring. Added string type.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1c9fdec..b83057d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,7 +17,7 @@ file(GLOB SOURCES
"src/rodeo.c"
"src/rodeo_math.c"
"src/rodeo_types.c"
- "src/rodeo_error.c"
+ "src/rodeo_string.c"
)
#add_library(lib src/lib.c)
@@ -94,6 +94,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten")
PUBLIC external/bgfx/include
PUBLIC external/bx/include
PUBLIC external/cglm/include
+ PUBLIC external/STC/include
PUBLIC include
PRIVATE src
)
@@ -107,6 +108,7 @@ elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
PUBLIC external/bgfx/include
PUBLIC external/bx/include
PUBLIC external/cglm/include
+ PUBLIC external/STC/include
PUBLIC include
PRIVATE src
)