diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-10 08:52:32 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-10 10:35:00 +0200 |
commit | fdcff54e1d845343cdfe39040aac6f7ff9b4163a (patch) | |
tree | db8de10a96b8022f43761c74a2d58453e3380d93 /draw | |
parent | 8c867fac69fa9da0370000fa170cad1e22702ce5 (diff) |
cmake: remove precompiled headers
They were having problems including fmtlib and robin_map.
Diffstat (limited to 'draw')
-rw-r--r-- | draw/CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/draw/CMakeLists.txt b/draw/CMakeLists.txt index 843a6cc3..2c12289d 100644 --- a/draw/CMakeLists.txt +++ b/draw/CMakeLists.txt @@ -2,6 +2,3 @@ set(self floormat-draw) file(GLOB sources "*.cpp" CONFIGURE_ARGS) add_library(${self} OBJECT "${sources}") target_link_libraries(${self} PUBLIC Magnum::GL) -if(FLOORMAT_PRECOMPILED-HEADERS) - target_precompile_headers(${self} REUSE_FROM floormat) -endif() |