diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-11-23 00:38:23 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-11-30 00:50:49 +0100 |
commit | 37bc5118ea8f5891741faba8963ce9ae5f88e946 (patch) | |
tree | 0beccc4f6ee5ddc627ddf59edebc659ce0611074 /src/common | |
parent | externals: Update dynarmic (diff) | |
download | yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.gz yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.bz2 yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.lz yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.xz yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.tar.zst yuzu-37bc5118ea8f5891741faba8963ce9ae5f88e946.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/CMakeLists.txt | 6 | ||||
-rw-r--r-- | src/common/precompiled_headers.h | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index b7c15c191..25fe5f56f 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -95,6 +95,7 @@ add_library(common STATIC param_package.h parent_of_member.h point.h + precompiled_headers.h quaternion.h reader_writer_queue.h ring_buffer.h @@ -183,3 +184,8 @@ else() target_link_libraries(common PRIVATE $<IF:$<TARGET_EXISTS:zstd::libzstd_shared>,zstd::libzstd_shared,zstd::libzstd_static>) endif() + +if (YUZU_USE_PRECOMPILED_HEADERS) + target_precompile_headers(common PRIVATE precompiled_headers.h) + set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) +endif() diff --git a/src/common/precompiled_headers.h b/src/common/precompiled_headers.h new file mode 100644 index 000000000..5f81bef98 --- /dev/null +++ b/src/common/precompiled_headers.h @@ -0,0 +1,12 @@ +// SPDX-FileCopyrightText: 2022 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include <algorithm> +#include <chrono> +#include <memory> + +#include <fmt/format.h> + +#include "common/assert.h" |