mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
cmake: remove subprojects
This commit is contained in:
parent
92a3538381
commit
c9ce15aa18
|
@ -1,16 +1,14 @@
|
||||||
project(swaybar)
|
|
||||||
|
|
||||||
find_package(Wayland REQUIRED)
|
find_package(Wayland REQUIRED)
|
||||||
find_package(Cairo REQUIRED)
|
find_package(Cairo REQUIRED)
|
||||||
find_package(Pango REQUIRED)
|
find_package(Pango REQUIRED)
|
||||||
|
|
||||||
include(Wayland)
|
include(Wayland)
|
||||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
|
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
|
||||||
${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml
|
../protocols/xdg-shell.xml
|
||||||
xdg-shell
|
xdg-shell
|
||||||
)
|
)
|
||||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
|
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
|
||||||
${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml
|
../protocols/desktop-shell.xml
|
||||||
desktop-shell
|
desktop-shell
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -21,9 +19,9 @@ include_directories(
|
||||||
${CMAKE_CURRENT_BINARY_DIR}
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
|
file(GLOB sources *.c)
|
||||||
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
|
file(GLOB common ../common/*.c)
|
||||||
file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)
|
file(GLOB wl_sources ../wayland/*.c)
|
||||||
|
|
||||||
add_executable(swaybar
|
add_executable(swaybar
|
||||||
${sources}
|
${sources}
|
||||||
|
|
|
@ -1,16 +1,14 @@
|
||||||
project(swaybg)
|
|
||||||
|
|
||||||
find_package(Wayland REQUIRED)
|
find_package(Wayland REQUIRED)
|
||||||
find_package(Cairo REQUIRED)
|
find_package(Cairo REQUIRED)
|
||||||
find_package(Pango REQUIRED)
|
find_package(Pango REQUIRED)
|
||||||
|
|
||||||
include(Wayland)
|
include(Wayland)
|
||||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
|
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
|
||||||
${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml
|
../protocols/xdg-shell.xml
|
||||||
xdg-shell
|
xdg-shell
|
||||||
)
|
)
|
||||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
|
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
|
||||||
${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml
|
../protocols/desktop-shell.xml
|
||||||
desktop-shell
|
desktop-shell
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -21,9 +19,9 @@ include_directories(
|
||||||
${CMAKE_CURRENT_BINARY_DIR}
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
|
file(GLOB sources *.c)
|
||||||
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
|
file(GLOB common ../common/*.c)
|
||||||
file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)
|
file(GLOB wl_sources ../wayland/*.c)
|
||||||
|
|
||||||
add_executable(swaybg
|
add_executable(swaybg
|
||||||
${sources}
|
${sources}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
project(swaygrab)
|
file(GLOB sources *.c)
|
||||||
|
file(GLOB common ../common/*.c)
|
||||||
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
|
|
||||||
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
|
|
||||||
|
|
||||||
add_executable(swaygrab
|
add_executable(swaygrab
|
||||||
${sources}
|
${sources}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
project(swaymsg)
|
file(GLOB sources *.c)
|
||||||
|
file(GLOB common ../common/*.c)
|
||||||
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
|
|
||||||
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
|
|
||||||
|
|
||||||
add_executable(swaymsg
|
add_executable(swaymsg
|
||||||
${sources}
|
${sources}
|
||||||
|
|
Loading…
Reference in a new issue