diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-05-02 13:16:47 +0200 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-05-03 19:04:16 +0900 |
commit | fce76be97164bd8d6be3645ed7b979e768f24981 (patch) | |
tree | 47e2c0339fb6b32fd9b6906db6ec525adedc8bcd /CMakeLists.txt | |
parent | 75e5eba91cd4d393d446e564bae829c64faa01da (diff) | |
download | tdeio-sword-fce76be97164bd8d6be3645ed7b979e768f24981.tar.gz tdeio-sword-fce76be97164bd8d6be3645ed7b979e768f24981.zip |
Drop automake build support.
Add basic cmake build instructions.
Rework of the README and help files.
Delete the NEWS file.
Some cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 9b0f1edee518a8c69bb51b25e0dbf56ae9b32843)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1efa16d..e4b2740 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,7 +69,7 @@ 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_DOC doc ) tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) |