diff options
Diffstat (limited to 'draw')
-rw-r--r-- | draw/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/draw/CMakeLists.txt b/draw/CMakeLists.txt index f2e11490..f12604ab 100644 --- a/draw/CMakeLists.txt +++ b/draw/CMakeLists.txt @@ -3,8 +3,8 @@ file(GLOB sources "*.cpp" CONFIGURE_ARGS) add_library(${self} OBJECT "${sources}") target_link_libraries(${self} PUBLIC Magnum::GL) -#if(NOT MSVC) -# target_precompile_headers(${self} REUSE_FROM floormat) -#else() -# target_precompile_headers(${self} PRIVATE ../src/precomp.hpp) -#endif() +if(NOT MSVC) + target_precompile_headers(${self} REUSE_FROM floormat) +else() + target_precompile_headers(${self} PRIVATE ../src/precomp.hpp) +endif() |