diff options
| author | 2022-11-22 18:38:23 -0500 | |
|---|---|---|
| committer | 2022-11-29 18:50:49 -0500 | |
| commit | 37bc5118ea8f5891741faba8963ce9ae5f88e946 (patch) | |
| tree | 0beccc4f6ee5ddc627ddf59edebc659ce0611074 /src/core | |
| parent | externals: Update dynarmic (diff) | |
| download | yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.gz yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.xz yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.zip | |
CMake: Use precompiled headers
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/CMakeLists.txt | 5 | ||||
| -rw-r--r-- | src/core/precompiled_headers.h | 14 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 5629980d9..6530d3c60 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -771,6 +771,7 @@ add_library(core STATIC | |||
| 771 | memory.h | 771 | memory.h |
| 772 | perf_stats.cpp | 772 | perf_stats.cpp |
| 773 | perf_stats.h | 773 | perf_stats.h |
| 774 | precompiled_headers.h | ||
| 774 | reporter.cpp | 775 | reporter.cpp |
| 775 | reporter.h | 776 | reporter.h |
| 776 | telemetry_session.cpp | 777 | telemetry_session.cpp |
| @@ -825,3 +826,7 @@ if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) | |||
| 825 | ) | 826 | ) |
| 826 | target_link_libraries(core PRIVATE dynarmic) | 827 | target_link_libraries(core PRIVATE dynarmic) |
| 827 | endif() | 828 | endif() |
| 829 | |||
| 830 | if (YUZU_USE_PRECOMPILED_HEADERS) | ||
| 831 | target_precompile_headers(core PRIVATE precompiled_headers.h) | ||
| 832 | endif() | ||
diff --git a/src/core/precompiled_headers.h b/src/core/precompiled_headers.h new file mode 100644 index 000000000..d224877ea --- /dev/null +++ b/src/core/precompiled_headers.h | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | // SPDX-FileCopyrightText: 2022 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include <algorithm> | ||
| 7 | #include <chrono> | ||
| 8 | #include <memory> | ||
| 9 | |||
| 10 | #include <boost/container/flat_map.hpp> // used by service.h which is heavily included | ||
| 11 | #include <boost/intrusive/rbtree.hpp> // used by k_auto_object.h which is heavily included | ||
| 12 | #include <fmt/format.h> | ||
| 13 | |||
| 14 | #include "common/assert.h" | ||