From fdcff54e1d845343cdfe39040aac6f7ff9b4163a Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 10 Apr 2023 08:52:32 +0200 Subject: cmake: remove precompiled headers They were having problems including fmtlib and robin_map. --- test/CMakeLists.txt | 3 --- test/precomp.hpp | 13 ------------- 2 files changed, 16 deletions(-) delete mode 100644 test/precomp.hpp (limited to 'test') diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 11e3fb09..bca15714 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -17,9 +17,6 @@ endif() add_executable(${self} dummy.cc) target_link_libraries(${self} ${self}_o floormat-serialize floormat) -if(FLOORMAT_PRECOMPILED-HEADERS) - target_precompile_headers(${self}_o PRIVATE precomp.hpp) -endif() install(TARGETS ${self} RUNTIME DESTINATION bin) set(save-dir "${CMAKE_BINARY_DIR}/test/save") diff --git a/test/precomp.hpp b/test/precomp.hpp deleted file mode 100644 index 2e5871cd..00000000 --- a/test/precomp.hpp +++ /dev/null @@ -1,13 +0,0 @@ -#pragma once -#include "../src/precomp.hpp" - -#if 1 -#ifdef __APPLE__ -#include -#elif defined _WIN32 -#include -#else -#include -#endif -#endif -#include -- cgit v1.2.3