cmake: convert all cmake commands to lowercase

This commit is contained in:
Christoph Gysin 2015-12-01 20:35:10 +02:00
parent 76a3868ce8
commit 2429266e3e
5 changed files with 16 additions and 16 deletions

View file

@ -2,15 +2,15 @@ project(swaygrab)
set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)
FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
FILE(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
add_executable(swaygrab
${sources}
${common}
)
TARGET_LINK_LIBRARIES(swaygrab rt)
target_link_libraries(swaygrab rt)
install(
TARGETS swaygrab