cmake: use tabs instead of spaces

This commit is contained in:
Christoph Gysin 2015-12-01 21:46:10 +02:00
parent 905966bcae
commit f7ec3d00a0
5 changed files with 121 additions and 121 deletions

View file

@ -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
)