diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-11-22 18:38:23 -0500 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-11-29 18:50:49 -0500 |
commit | 37bc5118ea8f5891741faba8963ce9ae5f88e946 (patch) | |
tree | 0beccc4f6ee5ddc627ddf59edebc659ce0611074 /src/web_service/CMakeLists.txt | |
parent | 5695ae6bdd52ca9e5f23f6892894c75c7bd7eda0 (diff) |
CMake: Use precompiled headers
Diffstat (limited to 'src/web_service/CMakeLists.txt')
-rw-r--r-- | src/web_service/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/web_service/CMakeLists.txt b/src/web_service/CMakeLists.txt index 3f75d97d1..19534b9e4 100644 --- a/src/web_service/CMakeLists.txt +++ b/src/web_service/CMakeLists.txt @@ -4,6 +4,7 @@ add_library(web_service STATIC announce_room_json.cpp announce_room_json.h + precompiled_headers.h telemetry_json.cpp telemetry_json.h verify_login.cpp @@ -17,3 +18,7 @@ add_library(web_service STATIC create_target_directory_groups(web_service) target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib cpp-jwt) + +if (YUZU_USE_PRECOMPILED_HEADERS) + target_precompile_headers(web_service PRIVATE precompiled_headers.h) +endif() |