summaryrefslogtreecommitdiffhomepage
path: root/serialize
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-04-10 08:52:32 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-04-10 10:35:00 +0200
commitfdcff54e1d845343cdfe39040aac6f7ff9b4163a (patch)
treedb8de10a96b8022f43761c74a2d58453e3380d93 /serialize
parent8c867fac69fa9da0370000fa170cad1e22702ce5 (diff)
cmake: remove precompiled headers
They were having problems including fmtlib and robin_map.
Diffstat (limited to 'serialize')
-rw-r--r--serialize/CMakeLists.txt4
-rw-r--r--serialize/precomp.hpp4
2 files changed, 0 insertions, 8 deletions
diff --git a/serialize/CMakeLists.txt b/serialize/CMakeLists.txt
index 1813ba90..45d7704e 100644
--- a/serialize/CMakeLists.txt
+++ b/serialize/CMakeLists.txt
@@ -22,7 +22,3 @@ endif()
if(WIN32)
target_link_libraries(${self} PUBLIC ntdll)
endif()
-
-if(FLOORMAT_PRECOMPILED-HEADERS)
- target_precompile_headers(${self} PRIVATE precomp.hpp)
-endif()
diff --git a/serialize/precomp.hpp b/serialize/precomp.hpp
deleted file mode 100644
index 23c79b16..00000000
--- a/serialize/precomp.hpp
+++ /dev/null
@@ -1,4 +0,0 @@
-#pragma once
-#include "../src/precomp.hpp"
-#include <nlohmann/json_fwd.hpp>
-#include <nlohmann/json.hpp>