summaryrefslogtreecommitdiffhomepage
path: root/src/CMakeLists.txt
blob: a03235e89cdc93f6fc3c63047d56299e1a6c36a8 (plain)
1
2
3
4
5
6
7
8
9
10
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
)