blob: fe32d1d5a8fc256b5e0713a08f0ff92bb5cdb965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
set(self floormat-main)
file(GLOB sources "*.cpp" CONFIGURE_ARGS)
add_library(${self} OBJECT "${sources}")
target_link_libraries(${self} PUBLIC
Magnum::Sdl2Application
Corrade::Containers
Magnum::GL
Magnum::Trade
fmt::fmt
tsl::robin_map
)
|