mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
cmake: extract sway
This commit is contained in:
parent
4277070a7b
commit
92a3538381
|
@ -43,60 +43,12 @@ add_definitions(-DSWAY_VERSION_DATE=\"${CURRENT_DATE}\")
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||||||
|
|
||||||
|
add_subdirectory(sway)
|
||||||
add_subdirectory(swaybg)
|
add_subdirectory(swaybg)
|
||||||
add_subdirectory(swaymsg)
|
add_subdirectory(swaymsg)
|
||||||
add_subdirectory(swaygrab)
|
add_subdirectory(swaygrab)
|
||||||
add_subdirectory(swaybar)
|
add_subdirectory(swaybar)
|
||||||
|
|
||||||
find_package(XKBCommon REQUIRED)
|
|
||||||
find_package(WLC REQUIRED)
|
|
||||||
find_package(PCRE REQUIRED)
|
|
||||||
find_package(Wayland REQUIRED)
|
|
||||||
find_package(JsonC REQUIRED)
|
|
||||||
|
|
||||||
file(GLOB sources ${PROJECT_SOURCE_DIR}/sway/*.c)
|
|
||||||
file(GLOB common ${PROJECT_SOURCE_DIR}/common/*.c)
|
|
||||||
|
|
||||||
include(Wayland)
|
|
||||||
WAYLAND_ADD_PROTOCOL_SERVER(proto-desktop-shell
|
|
||||||
${PROJECT_SOURCE_DIR}/protocols/desktop-shell.xml
|
|
||||||
desktop-shell
|
|
||||||
)
|
|
||||||
|
|
||||||
include_directories(
|
|
||||||
${WLC_INCLUDE_DIRS}
|
|
||||||
${PCRE_INCLUDE_DIRS}
|
|
||||||
${JSONC_INCLUDE_DIRS}
|
|
||||||
${XKBCOMMON_INCLUDE_DIRS}
|
|
||||||
${CMAKE_CURRENT_BINARY_DIR}
|
|
||||||
)
|
|
||||||
|
|
||||||
add_executable(sway
|
|
||||||
${sources}
|
|
||||||
${common}
|
|
||||||
${proto-desktop-shell}
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(sway
|
|
||||||
${WLC_LIBRARIES}
|
|
||||||
${XKBCOMMON_LIBRARIES}
|
|
||||||
${PCRE_LIBRARIES}
|
|
||||||
${JSONC_LIBRARIES}
|
|
||||||
${WAYLAND_SERVER_LIBRARIES}
|
|
||||||
)
|
|
||||||
|
|
||||||
install(
|
|
||||||
TARGETS sway
|
|
||||||
RUNTIME
|
|
||||||
DESTINATION bin
|
|
||||||
COMPONENT runtime
|
|
||||||
)
|
|
||||||
install(
|
|
||||||
FILES ${CMAKE_CURRENT_SOURCE_DIR}/config
|
|
||||||
DESTINATION ${FALLBACK_CONFIG_DIR}
|
|
||||||
COMPONENT configuration
|
|
||||||
)
|
|
||||||
|
|
||||||
include(Manpage)
|
include(Manpage)
|
||||||
add_manpage(sway 1)
|
add_manpage(sway 1)
|
||||||
add_manpage(sway 5)
|
add_manpage(sway 5)
|
||||||
|
|
48
sway/CMakeLists.txt
Normal file
48
sway/CMakeLists.txt
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
find_package(XKBCommon REQUIRED)
|
||||||
|
find_package(WLC REQUIRED)
|
||||||
|
find_package(PCRE REQUIRED)
|
||||||
|
find_package(Wayland REQUIRED)
|
||||||
|
find_package(JsonC REQUIRED)
|
||||||
|
|
||||||
|
include(Wayland)
|
||||||
|
WAYLAND_ADD_PROTOCOL_SERVER(proto-desktop-shell
|
||||||
|
${PROJECT_SOURCE_DIR}/protocols/desktop-shell.xml
|
||||||
|
desktop-shell
|
||||||
|
)
|
||||||
|
|
||||||
|
file(GLOB sources ${PROJECT_SOURCE_DIR}/sway/*.c)
|
||||||
|
file(GLOB common ${PROJECT_SOURCE_DIR}/common/*.c)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${WLC_INCLUDE_DIRS}
|
||||||
|
${PCRE_INCLUDE_DIRS}
|
||||||
|
${JSONC_INCLUDE_DIRS}
|
||||||
|
${XKBCOMMON_INCLUDE_DIRS}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
add_executable(sway
|
||||||
|
${sources}
|
||||||
|
${common}
|
||||||
|
${proto-desktop-shell}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(sway
|
||||||
|
${WLC_LIBRARIES}
|
||||||
|
${XKBCOMMON_LIBRARIES}
|
||||||
|
${PCRE_LIBRARIES}
|
||||||
|
${JSONC_LIBRARIES}
|
||||||
|
${WAYLAND_SERVER_LIBRARIES}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
TARGETS sway
|
||||||
|
RUNTIME
|
||||||
|
DESTINATION bin
|
||||||
|
COMPONENT runtime
|
||||||
|
)
|
||||||
|
install(
|
||||||
|
FILES ${CMAKE_CURRENT_SOURCE_DIR}/config
|
||||||
|
DESTINATION ${FALLBACK_CONFIG_DIR}
|
||||||
|
COMPONENT configuration
|
||||||
|
)
|
Loading…
Reference in a new issue