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. --- editor/CMakeLists.txt | 7 ------- editor/precomp.hpp | 25 ------------------------- 2 files changed, 32 deletions(-) delete mode 100644 editor/precomp.hpp (limited to 'editor') diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt index f94c21e1..306c95f4 100644 --- a/editor/CMakeLists.txt +++ b/editor/CMakeLists.txt @@ -23,16 +23,9 @@ if(NOT SDL2_INCLUDE_DIRS) get_target_property(SDL2_INCLUDE_DIRS SDL2::SDL2 INTERFACE_INCLUDE_DIRECTORIES) endif() endif() -if(FLOORMAT_PRECOMPILED-HEADERS) - include_directories("${SDL2_INCLUDE_DIRS}") -endif() set_property(SOURCE "events.cpp" APPEND PROPERTY INCLUDE_DIRECTORIES "${SDL2_INCLUDE_DIRS}") add_executable(${self} dummy.cc) target_link_libraries(${self} PRIVATE ${self}_o floormat-main floormat-serialize floormat-draw floormat) -if(FLOORMAT_PRECOMPILED-HEADERS) - target_precompile_headers(${self}_o PRIVATE precomp.hpp) -endif() - install(TARGETS ${self} RUNTIME DESTINATION bin) diff --git a/editor/precomp.hpp b/editor/precomp.hpp deleted file mode 100644 index c0167163..00000000 --- a/editor/precomp.hpp +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include "src/precomp.hpp" -#include "entity/metadata.hpp" -#include "entity/accessor.hpp" - -#include "src/entity.hpp" -#include "src/chunk.hpp" -#include "src/world.hpp" -#include "src/global-coords.hpp" -#include "src/anim-atlas.hpp" - -#include "app.hpp" -#include "imgui-raii.hpp" - -#include -#include - -#include -#include -#include - -#if __has_include() -#include -#endif -- cgit v1.2.3