aboutsummaryrefslogtreecommitdiffstats
path: root/swaybg
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-01 05:21:03 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-01 05:21:03 -0500
commitd071ff08aeae2bbea4ac4a8e56c7a146c13d0869 (patch)
treeb1780435422ac6d778fd4b9c0a4746306dee59fe /swaybg
parentremove relevant CMakeLists.txt (diff)
downloadsway-d071ff08aeae2bbea4ac4a8e56c7a146c13d0869.tar.gz
sway-d071ff08aeae2bbea4ac4a8e56c7a146c13d0869.tar.zst
sway-d071ff08aeae2bbea4ac4a8e56c7a146c13d0869.zip
remove the rest of cmake
Diffstat (limited to 'swaybg')
-rw-r--r--swaybg/CMakeLists.txt37
1 files changed, 0 insertions, 37 deletions
diff --git a/swaybg/CMakeLists.txt b/swaybg/CMakeLists.txt
deleted file mode 100644
index f8cad404..00000000
--- a/swaybg/CMakeLists.txt
+++ /dev/null
@@ -1,37 +0,0 @@
1include_directories(
2 ${PROTOCOLS_INCLUDE_DIRS}
3 ${WAYLAND_INCLUDE_DIR}
4 ${CAIRO_INCLUDE_DIRS}
5 ${PANGO_INCLUDE_DIRS}
6 ${XKBCOMMON_INCLUDE_DIRS}
7)
8
9add_executable(swaybg
10 main.c
11)
12
13target_link_libraries(swaybg
14 sway-common
15 sway-wayland
16 ${WAYLAND_CLIENT_LIBRARIES}
17 ${WAYLAND_CURSOR_LIBRARIES}
18 ${CAIRO_LIBRARIES}
19 ${PANGO_LIBRARIES}
20 m
21)
22
23if (WITH_GDK_PIXBUF)
24 include_directories(
25 ${GDK_PIXBUF_INCLUDE_DIRS}
26 )
27 target_link_libraries(swaybg
28 ${GDK_PIXBUF_LIBRARIES}
29 )
30endif()
31
32install(
33 TARGETS swaybg
34 RUNTIME
35 DESTINATION bin
36 COMPONENT runtime
37)