mirror of
https://github.com/hyprwm/hyprpaper.git
synced 2024-11-16 22:25:59 +01:00
Fix compilation with clang (#61)
Using `-std=c++2b` instead of `-std=c++23` allows compilation with clang instead of gcc.
This commit is contained in:
parent
4bcedde1dc
commit
10fd31a544
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ execute_process(
|
|||
#
|
||||
|
||||
include_directories(.)
|
||||
add_compile_options(-std=c++23 -DWLR_USE_UNSTABLE )
|
||||
add_compile_options(-std=c++2b -DWLR_USE_UNSTABLE )
|
||||
add_compile_options(-Wall -Wextra -Wno-unused-parameter -Wno-unused-value -Wno-missing-field-initializers -Wno-narrowing)
|
||||
find_package(Threads REQUIRED)
|
||||
|
||||
|
|
Loading…
Reference in a new issue