summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
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>