Files
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

9 lines
174 B
CMake

file(GLOB CXXFILES src/*.cpp)
add_library(loft_common OBJECT ${CXXFILES})
add_library(loft::common ALIAS loft_common)
target_include_directories(loft_common
PUBLIC
src/
)