diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-12-01 20:35:10 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-12-01 20:35:10 +0200 |
| commit | c0691eb03422c6fe8df87957bd954aa7f5059c2b (patch) | |
| tree | 6df935435cc06683e7b17a0cb09f11606499736a /swaybg | |
| parent | a32e55aff877a6e8e99fc235a6fe6e629a58c0e1 (diff) | |
cmake: convert all cmake commands to lowercase
Diffstat (limited to 'swaybg')
| -rw-r--r-- | swaybg/CMakeLists.txt | 8 |
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( ${CMAKE_CURRENT_BINARY_DIR} ) -FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c) -FILE(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c) -FILE(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c) +file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c) +file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c) +file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c) add_executable(swaybg ${sources} @@ -28,7 +28,7 @@ add_executable(swaybg ${proto-desktop-shell} ) -TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${WAYLAND_CURSOR_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} m) +target_link_libraries(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${WAYLAND_CURSOR_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} m) install( TARGETS swaybg |
