summaryrefslogtreecommitdiffhomepage
path: root/test
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 /test
parent8c867fac69fa9da0370000fa170cad1e22702ce5 (diff)
cmake: remove precompiled headers
They were having problems including fmtlib and robin_map.
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt3
-rw-r--r--test/precomp.hpp13
2 files changed, 0 insertions, 16 deletions
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 <Magnum/Platform/WindowlessCglApplication.h>
-#elif defined _WIN32
-#include <Magnum/Platform/WindowlessWglApplication.h>
-#else
-#include <Magnum/Platform/WindowlessGlxApplication.h>
-#endif
-#endif
-#include <Magnum/Platform/GLContext.h>