diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-03-20 15:27:05 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-03-21 00:52:42 +0900 |
commit | 912e13271f4c25b8574bb1b4305a28ca82863145 (patch) | |
tree | 61b42b2c5dd4feccb0797e4b12d3c1cfd3f5a92a /CMakeLists.txt | |
parent | cbda64be33cfa1a32b898eaf38105fad0b9ce6ac (diff) | |
download | knowit-912e13271f4c25b8574bb1b4305a28ca82863145.tar.gz knowit-912e13271f4c25b8574bb1b4305a28ca82863145.zip |
Drop automake build support.
Delete the templates folder.
Add basic build instructions.
Rework of the README and help page.
Some Cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 9de1ae68cda942c5455f5ca3a1f52539d82a57c2)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 63d0def..3dd1524 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,15 +41,15 @@ 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} ) ##### configure checks @@ -69,8 +69,8 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" ##### directories add_subdirectory( src ) -tde_conditional_add_subdirectory( BUILD_DOC doc ) -tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) ##### write configure files |