From bd34d6ef65fed8d28be57a41f70bf2abada00c76 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 5 Dec 2022 07:48:36 +0100 Subject: cmake: remove transitive deps to speed up build Also build them out of order to make sure there are no dependencies remaining. --- draw/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'draw') 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() -- cgit v1.2.3