diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-05-02 13:16:47 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-05-02 13:24:54 +0200 |
commit | 9b0f1edee518a8c69bb51b25e0dbf56ae9b32843 (patch) | |
tree | c30c8b33982c985e73bf5237f28d052182fce41a /CMakeLists.txt | |
parent | 4743905f46504c15449282f33dcecd1161add969 (diff) | |
download | tdeio-sword-9b0f1edee518a8c69bb51b25e0dbf56ae9b32843.tar.gz tdeio-sword-9b0f1edee518a8c69bb51b25e0dbf56ae9b32843.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>
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 11dd998..c467433 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 ) |