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/yuzu_cmd/CMakeLists.txt | |
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 '')
-rw-r--r-- | src/yuzu_cmd/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt index 7d8ca3d8a..daabf608d 100644 --- a/src/yuzu_cmd/CMakeLists.txt +++ b/src/yuzu_cmd/CMakeLists.txt @@ -24,6 +24,7 @@ add_executable(yuzu-cmd emu_window/emu_window_sdl2_gl.h emu_window/emu_window_sdl2_vk.cpp emu_window/emu_window_sdl2_vk.h + precompiled_headers.h yuzu.cpp yuzu.rc ) @@ -55,3 +56,7 @@ if (MSVC) include(CopyYuzuSDLDeps) copy_yuzu_SDL_deps(yuzu-cmd) endif() + +if (YUZU_USE_PRECOMPILED_HEADERS) + target_precompile_headers(yuzu-cmd PRIVATE precompiled_headers.h) +endif() |