mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 14:19:58 +00:00
Merge pull request #4479 from lioncash/concepts
CMakeLists: Resolve #4478
This commit is contained in:
commit
e8868c2ed1
1 changed files with 6 additions and 1 deletions
|
@ -60,9 +60,14 @@ else()
|
||||||
-Wmissing-declarations
|
-Wmissing-declarations
|
||||||
-Wno-attributes
|
-Wno-attributes
|
||||||
-Wno-unused-parameter
|
-Wno-unused-parameter
|
||||||
-fconcepts
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# TODO: Remove when we update to a GCC compiler that enables this
|
||||||
|
# by default (i.e. GCC 10 or newer).
|
||||||
|
if (CMAKE_CXX_COMPILER_ID STREQUAL GNU)
|
||||||
|
add_compile_options(-fconcepts)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (ARCHITECTURE_x86_64)
|
if (ARCHITECTURE_x86_64)
|
||||||
add_compile_options("-mcx16")
|
add_compile_options("-mcx16")
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue