diff options
author | gregory guy <[email protected]> | 2020-06-27 14:46:01 +0200 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-06-27 23:56:04 +0900 |
commit | a2bdb366d23ad3ae27e317bbdf5c966c71863d75 (patch) | |
tree | 2ac4e8942bd42ccaf1dead861cb7f68bcce4e5ed /CMakeLists.txt | |
parent | 91b7acd6bbe54b36f6e4b9597c4cf5572c9eb40c (diff) | |
download | kdiff3-a2bdb366d23ad3ae27e317bbdf5c966c71863d75.tar.gz kdiff3-a2bdb366d23ad3ae27e317bbdf5c966c71863d75.zip |
Drop automake build support.
Add basic cmake build instructions.
Delete the NEWS file.
Rework of the README.
The man folder has been moved into the doc folder for consistency with what
have been done so far.
The html pages have been moved into the doc folder as well.
Some cosmetics.
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit e14732aa76b0fc20b955da434b1e2e92012c34e8)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 560ca00..41e5be6 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 @@ -70,10 +70,8 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" add_subdirectory( src ) add_subdirectory( kdiff3plugin ) -tde_conditional_add_subdirectory( BUILD_DOC man ) -tde_conditional_add_subdirectory( BUILD_DOC doc ) -tde_conditional_add_subdirectory( BUILD_DOC data/doc ) -tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) tde_conditional_add_subdirectory( BUILD_TRANSLATIONS kdiff3plugin/po ) |