aboutsummaryrefslogtreecommitdiff
path: root/swaybg
diff options
context:
space:
mode:
authorChristoph Gysin <christoph.gysin@gmail.com>2015-12-01 21:46:10 +0200
committerChristoph Gysin <christoph.gysin@gmail.com>2015-12-01 22:03:09 +0200
commitf7ec3d00a08f0d44ae0c8fd756c24f12d68cee9b (patch)
tree2100f5d1fbb070b0d8620b43937116989f04ac93 /swaybg
parent905966bcae6a81fbe2cb98668982bd4804f362de (diff)
cmake: use tabs instead of spaces
Diffstat (limited to 'swaybg')
-rw-r--r--swaybg/CMakeLists.txt44
1 files changed, 22 insertions, 22 deletions
diff --git a/swaybg/CMakeLists.txt b/swaybg/CMakeLists.txt
index ae376419..9a54a32a 100644
--- a/swaybg/CMakeLists.txt
+++ b/swaybg/CMakeLists.txt
@@ -7,19 +7,19 @@ find_package(Pango REQUIRED)
include(Wayland)
set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
- "${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml"
- xdg-shell
+ "${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml"
+ xdg-shell
)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
- "${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml"
- desktop-shell
+ "${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml"
+ desktop-shell
)
include_directories(
- ${WAYLAND_CLIENT_INCLUDE_DIR}
- ${CAIRO_INCLUDE_DIRS}
- ${PANGO_INCLUDE_DIRS}
- ${CMAKE_CURRENT_BINARY_DIR}
+ ${WAYLAND_CLIENT_INCLUDE_DIR}
+ ${CAIRO_INCLUDE_DIRS}
+ ${PANGO_INCLUDE_DIRS}
+ ${CMAKE_CURRENT_BINARY_DIR}
)
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
@@ -27,24 +27,24 @@ file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)
add_executable(swaybg
- ${sources}
- ${wl_sources}
- ${common}
- ${proto-xdg-shell}
- ${proto-desktop-shell}
+ ${sources}
+ ${wl_sources}
+ ${common}
+ ${proto-xdg-shell}
+ ${proto-desktop-shell}
)
target_link_libraries(swaybg
- ${WAYLAND_CLIENT_LIBRARIES}
- ${WAYLAND_CURSOR_LIBRARIES}
- ${CAIRO_LIBRARIES}
- ${PANGO_LIBRARIES}
- m
+ ${WAYLAND_CLIENT_LIBRARIES}
+ ${WAYLAND_CURSOR_LIBRARIES}
+ ${CAIRO_LIBRARIES}
+ ${PANGO_LIBRARIES}
+ m
)
install(
- TARGETS swaybg
- RUNTIME
- DESTINATION bin
- COMPONENT runtime
+ TARGETS swaybg
+ RUNTIME
+ DESTINATION bin
+ COMPONENT runtime
)