diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-01 05:21:03 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-12-01 05:21:03 -0500 |
commit | 875cf1fce1370d0c1493dbb855838b7d13139a50 (patch) | |
tree | 44675989d385cf09945314c75aa6495663eaa396 | |
parent | 469f0f51fbed78c29fbef13dd8a0f6659ff24bda (diff) | |
download | swaybg-875cf1fce1370d0c1493dbb855838b7d13139a50.tar.gz swaybg-875cf1fce1370d0c1493dbb855838b7d13139a50.tar.bz2 |
remove the rest of cmake
-rw-r--r-- | CMakeLists.txt | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index f8cad40..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,37 +0,0 @@ -include_directories( - ${PROTOCOLS_INCLUDE_DIRS} - ${WAYLAND_INCLUDE_DIR} - ${CAIRO_INCLUDE_DIRS} - ${PANGO_INCLUDE_DIRS} - ${XKBCOMMON_INCLUDE_DIRS} -) - -add_executable(swaybg - main.c -) - -target_link_libraries(swaybg - sway-common - sway-wayland - ${WAYLAND_CLIENT_LIBRARIES} - ${WAYLAND_CURSOR_LIBRARIES} - ${CAIRO_LIBRARIES} - ${PANGO_LIBRARIES} - m -) - -if (WITH_GDK_PIXBUF) - include_directories( - ${GDK_PIXBUF_INCLUDE_DIRS} - ) - target_link_libraries(swaybg - ${GDK_PIXBUF_LIBRARIES} - ) -endif() - -install( - TARGETS swaybg - RUNTIME - DESTINATION bin - COMPONENT runtime -) |