blob: f8d3e03202ac2efc5af080e9f447c3ebc0ee1581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
#Magnum::DebugTools
fmt::fmt
tsl::robin_map
)
|