blob: 4aa9dbb45d90da4677445fd7595053e6f1dca5c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
set(self floormat)
file(GLOB sources *.cpp ../shaders/*.cpp ../compat/*.cpp ../entity/*.cpp CONFIGURE_ARGS)
add_library(${self} OBJECT "${sources}")
target_link_libraries(
${self} PUBLIC
Magnum::GL
Magnum::Magnum
Magnum::Shaders
fmt::fmt
tsl::robin_map
)
|