mirror of
https://github.com/swaywm/sway.git
synced 2025-10-29 05:40:18 -04:00
fix backtrace detection in CMake
works on arch (glibc) and void linux (tested with musl libc) now
This commit is contained in:
parent
03c041dd30
commit
470e59b291
2 changed files with 9 additions and 3 deletions
|
|
@ -1,5 +1,4 @@
|
|||
add_library(sway-common
|
||||
${SWAY_Backtrace_HEADER}
|
||||
ipc-client.c
|
||||
list.c
|
||||
log.c
|
||||
|
|
@ -7,3 +6,10 @@ add_library(sway-common
|
|||
readline.c
|
||||
stringop.c
|
||||
)
|
||||
|
||||
if(Backtrace_FOUND)
|
||||
set_target_properties(sway-common
|
||||
PROPERTIES
|
||||
COMPILE_FLAGS "-include ${Backtrace_HEADER}"
|
||||
)
|
||||
endif()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue