diff options
author | comex <comexk@gmail.com> | 2023-08-20 23:52:58 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-08-26 01:22:31 +0200 |
commit | 32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c (patch) | |
tree | 9d194999e60da9f1d09b9ffe4fe6198baca7d8c4 /externals/CMakeLists.txt | |
parent | Warnings cleanup for GCC 13 and Clang 16 (diff) | |
download | yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.tar yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.tar.gz yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.tar.bz2 yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.tar.lz yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.tar.xz yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.tar.zst yuzu-32c453a5f13f8e1dd11a91aa2de5e3fd6dc3e87c.zip |
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r-- | externals/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 3a389485b..4a8e1cee9 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -43,8 +43,8 @@ endif() add_subdirectory(mbedtls) target_include_directories(mbedtls PUBLIC ./mbedtls/include) target_compile_options(mbedcrypto PRIVATE - $<$<CXX_COMPILER_ID:Clang>:-Wno-unused-but-set-variable> - $<$<CXX_COMPILER_ID:Clang>:-Wno-string-concatenation>) + -Wno-unused-but-set-variable + -Wno-string-concatenation) # MicroProfile add_library(microprofile INTERFACE) @@ -98,7 +98,9 @@ if (ENABLE_CUBEB AND NOT TARGET cubeb::cubeb) add_subdirectory(cubeb) add_library(cubeb::cubeb ALIAS cubeb) if (NOT MSVC) - target_compile_options(speex PRIVATE -Wno-sign-compare) + if (TARGET speex) + target_compile_options(speex PRIVATE -Wno-sign-compare) + endif() target_compile_options(cubeb PRIVATE -Wno-implicit-const-int-float-conversion) endif() endif() |