1
1
mirror of https://github.com/swaywm/sway synced 2024-09-30 21:31:55 +02:00
sway/common/CMakeLists.txt
2016-07-30 18:50:13 -05:00

23 lines
333 B
CMake

include_directories(
${WLC_INCLUDE_DIRS}
${XKBCOMMON_INCLUDE_DIRS}
)
add_library(sway-common STATIC
ipc-client.c
list.c
log.c
util.c
readline.c
stringop.c
)
target_link_libraries(sway-common m)
if(Backtrace_FOUND)
set_target_properties(sway-common
PROPERTIES
COMPILE_FLAGS "-include ${Backtrace_HEADER}"
)
endif()