diff options
Diffstat (limited to 'src/yuzu_cmd/CMakeLists.txt')
| -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 | |||
| 24 | emu_window/emu_window_sdl2_gl.h | 24 | emu_window/emu_window_sdl2_gl.h |
| 25 | emu_window/emu_window_sdl2_vk.cpp | 25 | emu_window/emu_window_sdl2_vk.cpp |
| 26 | emu_window/emu_window_sdl2_vk.h | 26 | emu_window/emu_window_sdl2_vk.h |
| 27 | precompiled_headers.h | ||
| 27 | yuzu.cpp | 28 | yuzu.cpp |
| 28 | yuzu.rc | 29 | yuzu.rc |
| 29 | ) | 30 | ) |
| @@ -55,3 +56,7 @@ if (MSVC) | |||
| 55 | include(CopyYuzuSDLDeps) | 56 | include(CopyYuzuSDLDeps) |
| 56 | copy_yuzu_SDL_deps(yuzu-cmd) | 57 | copy_yuzu_SDL_deps(yuzu-cmd) |
| 57 | endif() | 58 | endif() |
| 59 | |||
| 60 | if (YUZU_USE_PRECOMPILED_HEADERS) | ||
| 61 | target_precompile_headers(yuzu-cmd PRIVATE precompiled_headers.h) | ||
| 62 | endif() | ||