summaryrefslogtreecommitdiffhomepage
path: root/draw
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-12-05 07:48:36 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-12-05 07:48:51 +0100
commitbd34d6ef65fed8d28be57a41f70bf2abada00c76 (patch)
tree63d4899e781f3e5e1e10966aaf6f430e4d3b55b0 /draw
parent900d775c8f4f078dc7cba8557e3991e52d2d5f89 (diff)
cmake: remove transitive deps to speed up build
Also build them out of order to make sure there are no dependencies remaining.
Diffstat (limited to 'draw')
-rw-r--r--draw/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/CMakeLists.txt b/draw/CMakeLists.txt
index 027c1e24..a4be3c13 100644
--- a/draw/CMakeLists.txt
+++ b/draw/CMakeLists.txt
@@ -1,7 +1,7 @@
set(self floormat-draw)
file(GLOB sources "*.cpp" CONFIGURE_ARGS)
add_library(${self} OBJECT "${sources}")
-target_link_libraries(${self} PUBLIC Magnum::GL floormat)
+target_link_libraries(${self} PUBLIC Magnum::GL)
if(FLOORMAT_PRECOMPILED-HEADERS)
target_precompile_headers(${self} PRIVATE precomp.hpp)
endif()