bettola/libbettola/CMakeLists.txt
Ritchie Cunningham a8a1ea44cf refactor(math): Replace GLM with custom math lib.
Replaced the GLM dependency with a custom math lib 'libbettola'
2025-09-13 02:25:13 +01:00

9 lines
287 B
CMake

file(GLOB_RECURSE SOURCES "src/*.cpp")
# Create a static library named 'libbettola'.
add_library(bettola_lib STATIC ${SOURCES})
# Tell any target that links against this lib to
# automagically include the #include' dir.
target_include_directories(bettola_lib PUBLIC "include/bettola")