1
1
mirror of https://github.com/swaywm/sway synced 2024-10-01 18:21:27 +02:00
sway/common/CMakeLists.txt

20 lines
261 B
CMake
Raw Normal View History

include_directories(
${WLC_INCLUDE_DIRS}
)
add_library(sway-common
ipc-client.c
list.c
log.c
2015-12-14 17:16:38 +01:00
util.c
readline.c
stringop.c
)
if(Backtrace_FOUND)
set_target_properties(sway-common
PROPERTIES
COMPILE_FLAGS "-include ${Backtrace_HEADER}"
)
endif()