bettola/libbettola/CMakeLists.txt
Ritchie Cunningham ad2a540554 [Refactor] Unify client and server player classes.
A bit of an architectural change before we progress further. Moved
player code into a shared PlayerBass class to elimnate some severe code
duplication while i was getting things working.
2025-09-16 00:10:35 +01:00

9 lines
279 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")