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

@ -6,17 +6,17 @@ file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
add_executable(swaygrab
${sources}
${common}
${sources}
${common}
)
target_link_libraries(swaygrab
rt
rt
)
install(
TARGETS swaygrab
RUNTIME
DESTINATION bin
COMPONENT runtime
TARGETS swaygrab
RUNTIME
DESTINATION bin
COMPONENT runtime
)