aboutsummaryrefslogtreecommitdiff
path: root/swaybar
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-12-01 15:57:03 -0500
committerDrew DeVault <sir@cmpwn.com>2015-12-01 15:57:03 -0500
commitfc01f04c93c0de2a0cdcee946ac0131b86e18342 (patch)
tree204ba2fbc20298af8f159cd648c710b3a346135a /swaybar
parent297d8b3f02a97c8b23fedd4185016e785f7e2fda (diff)
parent38d4ee9f5030ad8bf383c8c24b0b13b20dbc45de (diff)
Merge pull request #287 from christophgysin/cmake
cmake: extract config from toplevel CMakeLists.txt
Diffstat (limited to 'swaybar')
-rw-r--r--swaybar/CMakeLists.txt12
1 files changed, 5 insertions, 7 deletions
diff --git a/swaybar/CMakeLists.txt b/swaybar/CMakeLists.txt
index ea35134f..c14b5f75 100644
--- a/swaybar/CMakeLists.txt
+++ b/swaybar/CMakeLists.txt
@@ -1,16 +1,14 @@
-project(swaybar)
-
find_package(Wayland REQUIRED)
find_package(Cairo REQUIRED)
find_package(Pango REQUIRED)
include(Wayland)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
- ${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml
+ ../protocols/xdg-shell.xml
xdg-shell
)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
- ${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml
+ ../protocols/desktop-shell.xml
desktop-shell
)
@@ -21,9 +19,9 @@ include_directories(
${CMAKE_CURRENT_BINARY_DIR}
)
-file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
-file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
-file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)
+file(GLOB sources *.c)
+file(GLOB common ../common/*.c)
+file(GLOB wl_sources ../wayland/*.c)
add_executable(swaybar
${sources}