diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-11-04 19:42:39 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-11-04 19:42:39 +0100 |
commit | 3cf1fd2a97f5673b53bab691f8db97c844b999ba (patch) | |
tree | f82c5855e8df2a9ab171b26d7e26d270f4ad52ba /CMakeLists.txt | |
parent | 0a648d2db08a0182560096b435f67c60e3c9cbd5 (diff) | |
download | yawa-3cf1fd2a97f5673b53bab691f8db97c844b999ba.tar.xz |
Replace autotools with CMake
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f5c3504 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required (VERSION 2.6) +project (hsetroot) + +set(PACKAGE_NAME "hsetroot") +set(PACKAGE_VERSION "1.0.3") +set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") +set(PACKAGE_DESCRIPTION "yet another wallpaper application") +set(PACKAGE_BUGREPORT "johannes@kyriasis.com") + +configure_file( + ${CMAKE_SOURCE_DIR}/src/config.h.in + ${CMAKE_SOURCE_DIR}/src/config.h +) + +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) + +add_subdirectory("src") |