blob: 6f1e78cdbe31e433b41cf31b6287140e1dc85011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
)
#target_precompile_headers(${self} PUBLIC precomp.hpp)
|