diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-06-05 15:35:30 +0200 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2020-06-05 15:47:19 +0200 |
commit | 11c5062539a42b939727a3f0f8a6fbacc1b238be (patch) | |
tree | 6f0464aab1d36ee7aa8f17cdea20c14b7ed41c40 /CMakeLists.txt | |
parent | de741fb836ee6836ce2beb0a369f03ddcbdef036 (diff) | |
download | kasablanca-11c5062539a42b939727a3f0f8a6fbacc1b238be.tar.gz kasablanca-11c5062539a42b939727a3f0f8a6fbacc1b238be.zip |
Drop automake build support.
Add basic cmake build instructions.
Delete empty file NEWS and rpm spec files.
Better detection for OpenSSL headers and libraries.
Write a README file.
Rework of the help page.
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 171828c..09d7369 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 ) |