diff options
Diffstat (limited to 'src/input_common')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 5 | ||||
| -rw-r--r-- | src/input_common/precompiled_headers.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 193127d0a..e41da2726 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -34,6 +34,7 @@ add_library(input_common STATIC | |||
| 34 | input_poller.h | 34 | input_poller.h |
| 35 | main.cpp | 35 | main.cpp |
| 36 | main.h | 36 | main.h |
| 37 | precompiled_headers.h | ||
| 37 | ) | 38 | ) |
| 38 | 39 | ||
| 39 | if (MSVC) | 40 | if (MSVC) |
| @@ -67,3 +68,7 @@ target_link_libraries(input_common PRIVATE usb) | |||
| 67 | 68 | ||
| 68 | create_target_directory_groups(input_common) | 69 | create_target_directory_groups(input_common) |
| 69 | target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost) | 70 | target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost) |
| 71 | |||
| 72 | if (YUZU_USE_PRECOMPILED_HEADERS) | ||
| 73 | target_precompile_headers(input_common PRIVATE precompiled_headers.h) | ||
| 74 | endif() | ||
diff --git a/src/input_common/precompiled_headers.h b/src/input_common/precompiled_headers.h new file mode 100644 index 000000000..aabae730b --- /dev/null +++ b/src/input_common/precompiled_headers.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | // SPDX-FileCopyrightText: 2022 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include "common/common_precompiled_headers.h" | ||