summaryrefslogtreecommitdiffhomepage
path: root/draw/CMakeLists.txt
blob: 9dd2e86977cd445693aff3e3e7689180b5624143 (plain)
1
2
3
4
5
6
7
8
9
set(self ${PROJECT_NAME}-draw)
file(GLOB sources "*.cpp" CONFIGURE_ARGS)
add_library(${self} STATIC "${sources}")
target_link_libraries(${self} PUBLIC
    Magnum::GL
    Magnum::Magnum
    Magnum::Shaders
    ${PROJECT_NAME}
)