diff options
author | gregory guy <gregory-tde@laposte.net> | 2019-11-01 11:46:21 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-11-04 22:15:53 +0900 |
commit | a5293a4305b4cefdbd8827a3248915f08c958918 (patch) | |
tree | 951fe4bce963c896be0c80f270599c9db7b961f8 /CMakeLists.txt | |
parent | ec3ad1da018999fc627db82f9778ebf28da0aedf (diff) | |
download | knights-a5293a4305b4cefdbd8827a3248915f08c958918.tar.gz knights-a5293a4305b4cefdbd8827a3248915f08c958918.zip |
Drop automake build support.
Add basic cmake build instructions in the INSTALL file.
Rework of README file and the help page.
The History file has been removed, the content added to the
ChangeLog file.
The file CreatingThemes has moved in the doc folder.
Cosmetic changes in CMakeLists.txt .
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 873d0e4138a1569d2a8dfa061d0338b6d017dd3b)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ed43aaa..724892f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,15 +41,16 @@ tde_setup_paths( ) ##### optional stuff -option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) +option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) ##### user requested modules -option( BUILD_ALL "Build all" ON ) -option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) -option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) +option( BUILD_ALL "Build all" ON ) +option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) +option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) +option( BUILD_EXTRA_THEME "Build extra-theme" ${BUILD_ALL} ) ##### configure checks @@ -68,10 +69,11 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" ##### directories -add_subdirectory( ${PROJECT_NAME} ) add_subdirectory( media ) -tde_conditional_add_subdirectory( BUILD_DOC doc ) -tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) +add_subdirectory( ${PROJECT_NAME} ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) +tde_conditional_add_subdirectory( BUILD_EXTRA_THEME extra-theme ) ##### write configure files |