aboutsummaryrefslogtreecommitdiffstats
path: root/swaybg
diff options
context:
space:
mode:
authorLibravatar Christoph Gysin <christoph.gysin@gmail.com>2015-12-01 20:35:10 +0200
committerLibravatar Christoph Gysin <christoph.gysin@gmail.com>2015-12-01 22:03:09 +0200
commit2429266e3ec3c541d4eec10e6f828b422d056dbd (patch)
tree6df935435cc06683e7b17a0cb09f11606499736a /swaybg
parentMerge pull request #284 from gpyh/master (diff)
downloadsway-2429266e3ec3c541d4eec10e6f828b422d056dbd.tar.gz
sway-2429266e3ec3c541d4eec10e6f828b422d056dbd.tar.zst
sway-2429266e3ec3c541d4eec10e6f828b422d056dbd.zip
cmake: convert all cmake commands to lowercase
Diffstat (limited to 'swaybg')
-rw-r--r--swaybg/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/swaybg/CMakeLists.txt b/swaybg/CMakeLists.txt
index d4de69de..6a6c3efa 100644
--- a/swaybg/CMakeLists.txt
+++ b/swaybg/CMakeLists.txt
@@ -16,9 +16,9 @@ include_directories(
16 ${CMAKE_CURRENT_BINARY_DIR} 16 ${CMAKE_CURRENT_BINARY_DIR}
17) 17)
18 18
19FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c) 19file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
20FILE(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c) 20file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
21FILE(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c) 21file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)
22 22
23add_executable(swaybg 23add_executable(swaybg
24 ${sources} 24 ${sources}
@@ -28,7 +28,7 @@ add_executable(swaybg
28 ${proto-desktop-shell} 28 ${proto-desktop-shell}
29) 29)
30 30
31TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${WAYLAND_CURSOR_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} m) 31target_link_libraries(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${WAYLAND_CURSOR_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} m)
32 32
33install( 33install(
34 TARGETS swaybg 34 TARGETS swaybg