Merging upstream version 3.5.5 (Closes: #1098233).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
c86ae7dcba
commit
6af28b7e8e
144 changed files with 43534 additions and 11497 deletions
250
CMakeLists.txt
250
CMakeLists.txt
|
@ -1,9 +1,9 @@
|
|||
cmake_minimum_required(VERSION 2.8.12)
|
||||
cmake_minimum_required(VERSION 3.5...3.28.1)
|
||||
|
||||
project(libnetconf2 C)
|
||||
|
||||
# include custom Modules
|
||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules/")
|
||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules/")
|
||||
|
||||
include(GNUInstallDirs)
|
||||
include(CheckFunctionExists)
|
||||
|
@ -19,16 +19,6 @@ if(POLICY CMP0075)
|
|||
cmake_policy(SET CMP0075 NEW)
|
||||
endif()
|
||||
|
||||
set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.")
|
||||
|
||||
# check the supported platform
|
||||
if(NOT UNIX)
|
||||
message(FATAL_ERROR "Only *nix like systems are supported.")
|
||||
endif()
|
||||
|
||||
# osx specific
|
||||
set(CMAKE_MACOSX_RPATH TRUE)
|
||||
|
||||
# set default build type if not specified by user
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Debug)
|
||||
|
@ -53,28 +43,40 @@ elseif("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
|
|||
set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE)
|
||||
endif()
|
||||
|
||||
#
|
||||
# variables
|
||||
#
|
||||
|
||||
set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.")
|
||||
|
||||
# osx specific
|
||||
set(CMAKE_MACOSX_RPATH TRUE)
|
||||
|
||||
# Version of the project
|
||||
# Generic version of not only the library. Major version is reserved for really big changes of the project,
|
||||
# minor version changes with added functionality (new tool, functionality of the tool or library, ...) and
|
||||
# micro version is changed with a set of small changes or bugfixes anywhere in the project.
|
||||
set(LIBNETCONF2_MAJOR_VERSION 2)
|
||||
set(LIBNETCONF2_MINOR_VERSION 0)
|
||||
set(LIBNETCONF2_MICRO_VERSION 24)
|
||||
set(LIBNETCONF2_MAJOR_VERSION 3)
|
||||
set(LIBNETCONF2_MINOR_VERSION 5)
|
||||
set(LIBNETCONF2_MICRO_VERSION 5)
|
||||
set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
|
||||
|
||||
# Version of the library
|
||||
# Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes
|
||||
# Major version is changed with every backward non-compatible API/ABI change in the library, minor version changes
|
||||
# with backward compatible change and micro version is connected with any internal change of the library.
|
||||
set(LIBNETCONF2_MAJOR_SOVERSION 2)
|
||||
set(LIBNETCONF2_MINOR_SOVERSION 1)
|
||||
set(LIBNETCONF2_MICRO_SOVERSION 20)
|
||||
set(LIBNETCONF2_MAJOR_SOVERSION 4)
|
||||
set(LIBNETCONF2_MINOR_SOVERSION 4)
|
||||
set(LIBNETCONF2_MICRO_SOVERSION 5)
|
||||
set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION})
|
||||
set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION})
|
||||
|
||||
# libyang SO version required
|
||||
set(LIBYANG_DEP_SOVERSION_MAJOR 2)
|
||||
# Version of libyang library that this project depends on
|
||||
set(LIBYANG_DEP_VERSION 2.0.0)
|
||||
set(LIBYANG_DEP_SOVERSION 3.0.0)
|
||||
set(LIBYANG_DEP_SOVERSION_MAJOR 3)
|
||||
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -std=gnu99")
|
||||
# global C flags
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fvisibility=hidden -std=c99")
|
||||
|
||||
#
|
||||
# options
|
||||
|
@ -86,15 +88,18 @@ else()
|
|||
option(ENABLE_TESTS "Build tests" OFF)
|
||||
option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
|
||||
endif()
|
||||
option(ENABLE_EXAMPLES "Build examples" ON)
|
||||
option(ENABLE_COVERAGE "Build code coverage report from tests" OFF)
|
||||
option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON)
|
||||
option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON)
|
||||
option(ENABLE_SSH_TLS "Enable NETCONF over SSH and TLS support (via libssh and OpenSSL)" ON)
|
||||
option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF)
|
||||
option(ENABLE_COMMON_TARGETS "Define common custom target names such as 'doc' or 'uninstall', may cause conflicts when using add_subdirectory() to build this project" ON)
|
||||
option(BUILD_SHARED_LIBS "By default, shared libs are enabled. Turn off for a static build." ON)
|
||||
set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived")
|
||||
set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message")
|
||||
set(MAX_PSPOLL_THREAD_COUNT 6 CACHE STRING "Maximum number of threads that could simultaneously access a ps_poll structure")
|
||||
set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses")
|
||||
set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/share/yang/modules" CACHE STRING "Directory with common YANG modules")
|
||||
set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/yang/modules/libnetconf2" CACHE STRING "Directory where to copy the YANG modules to")
|
||||
set(CLIENT_SEARCH_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/yang/modules" CACHE STRING "Default NC client YANG module search directory")
|
||||
|
||||
#
|
||||
# sources
|
||||
|
@ -106,20 +111,21 @@ set(libsrc
|
|||
src/messages_server.c
|
||||
src/session.c
|
||||
src/session_client.c
|
||||
src/session_server.c)
|
||||
src/session_server.c
|
||||
src/server_config.c
|
||||
src/server_config_util.c)
|
||||
|
||||
if(ENABLE_SSH)
|
||||
if(ENABLE_SSH_TLS)
|
||||
list(APPEND libsrc
|
||||
src/session_client_ssh.c
|
||||
src/session_server_ssh.c)
|
||||
set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif")
|
||||
endif()
|
||||
|
||||
if(ENABLE_TLS)
|
||||
list(APPEND libsrc
|
||||
src/session_server_ssh.c
|
||||
src/server_config_util_ssh.c
|
||||
src/session_client_tls.c
|
||||
src/session_server_tls.c)
|
||||
set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif")
|
||||
src/session_server_tls.c
|
||||
src/server_config_util_tls.c
|
||||
src/server_config_ks.c
|
||||
src/server_config_ts.c)
|
||||
set(SSH_TLS_MACRO "#ifndef NC_ENABLED_SSH_TLS\n#define NC_ENABLED_SSH_TLS\n#endif")
|
||||
endif()
|
||||
|
||||
set(headers
|
||||
|
@ -131,11 +137,12 @@ set(headers
|
|||
src/session_client.h
|
||||
src/session_client_ch.h
|
||||
src/session_server.h
|
||||
src/session_server_ch.h)
|
||||
src/session_server_ch.h
|
||||
src/server_config.h)
|
||||
|
||||
# files to generate doxygen from
|
||||
set(doxy_files
|
||||
src/libnetconf.h
|
||||
doc/libnetconf.doc
|
||||
src/log.h
|
||||
src/netconf.h
|
||||
src/session.h
|
||||
|
@ -144,21 +151,23 @@ set(doxy_files
|
|||
src/session_client.h
|
||||
src/session_client_ch.h
|
||||
src/session_server.h
|
||||
src/session_server_ch.h)
|
||||
src/session_server_ch.h
|
||||
src/server_config.h)
|
||||
|
||||
# source files to be covered by the 'format' target
|
||||
set(format_sources
|
||||
compat/*.c
|
||||
compat/*.h*
|
||||
examples/*.c
|
||||
examples/*.h*
|
||||
src/*.c
|
||||
src/*.h
|
||||
tests/*.c
|
||||
tests/client/*.c)
|
||||
tests/*.c)
|
||||
|
||||
#
|
||||
# checks
|
||||
#
|
||||
if(ENABLE_DNSSEC AND NOT ENABLE_SSH)
|
||||
if(ENABLE_DNSSEC AND NOT ENABLE_SSH_TLS)
|
||||
message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.")
|
||||
set(ENABLE_DNSSEC OFF)
|
||||
endif()
|
||||
|
@ -186,7 +195,7 @@ if(ENABLE_COVERAGE)
|
|||
endif()
|
||||
|
||||
if ("${BUILD_TYPE_UPPER}" STREQUAL "DEBUG")
|
||||
source_format_enable()
|
||||
source_format_enable(0.77)
|
||||
endif()
|
||||
|
||||
if("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY")
|
||||
|
@ -201,12 +210,15 @@ endif()
|
|||
# use compat
|
||||
use_compat()
|
||||
|
||||
# netconf2 target
|
||||
add_library(netconf2 SHARED ${libsrc} ${compatsrc})
|
||||
# netconf2 sourceless target - need it for linking libs, but the required sources will be added later
|
||||
add_library(netconf2)
|
||||
|
||||
# set the shared library version
|
||||
set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION})
|
||||
|
||||
# include repository files with highest priority
|
||||
include_directories(${PROJECT_BINARY_DIR}/src)
|
||||
include_directories(${PROJECT_BINARY_DIR}/include)
|
||||
|
||||
# dependencies - pthread
|
||||
set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
|
||||
|
@ -217,41 +229,75 @@ target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT})
|
|||
set(CMAKE_REQUIRED_LIBRARIES pthread)
|
||||
check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP)
|
||||
|
||||
# dependencies - openssl
|
||||
if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH)
|
||||
find_package(OpenSSL REQUIRED)
|
||||
if(ENABLE_TLS)
|
||||
message(STATUS "OpenSSL found, required for TLS")
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS")
|
||||
endif()
|
||||
if(OPENSSL_VERSION VERSION_LESS 1.1.1)
|
||||
message(WARNING "OpenSSL version ${OPENSSL_VERSION} is no longer maintained, consider an update.")
|
||||
endif()
|
||||
|
||||
target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
|
||||
include_directories(${OPENSSL_INCLUDE_DIR})
|
||||
endif()
|
||||
|
||||
# dependencies - libssh
|
||||
if(ENABLE_SSH)
|
||||
find_package(LibSSH 0.7.1 REQUIRED)
|
||||
if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4)
|
||||
message(FATAL_ERROR "LibSSH ${LIBSSH_VERSION} includes regression bugs and libnetconf2 will NOT work properly, try to use another version")
|
||||
# header file compatibility
|
||||
check_include_file("shadow.h" HAVE_SHADOW)
|
||||
check_include_file("termios.h" HAVE_TERMIOS)
|
||||
|
||||
if(ENABLE_SSH_TLS)
|
||||
# dependencies - mbedTLS (higher preference) or OpenSSL
|
||||
find_package(MbedTLS 3.5.0)
|
||||
if (MBEDTLS_FOUND)
|
||||
# dependencies - mbedtls
|
||||
set(HAVE_MBEDTLS TRUE)
|
||||
list(APPEND libsrc src/session_mbedtls.c)
|
||||
include_directories(${MBEDTLS_INCLUDE_DIRS})
|
||||
target_link_libraries(netconf2 ${MBEDTLS_LIBRARIES})
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${MBEDTLS_LIBRARIES})
|
||||
else()
|
||||
# dependencies - openssl
|
||||
find_package(OpenSSL 3.0.0 REQUIRED)
|
||||
list(APPEND libsrc src/session_openssl.c)
|
||||
include_directories(${OPENSSL_INCLUDE_DIR})
|
||||
target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${OPENSSL_LIBRARIES})
|
||||
endif()
|
||||
|
||||
# dependencies - libssh
|
||||
find_package(LibSSH 0.9.5 REQUIRED)
|
||||
target_link_libraries(netconf2 ${LIBSSH_LIBRARIES})
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES})
|
||||
include_directories(${LIBSSH_INCLUDE_DIRS})
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH")
|
||||
|
||||
# crypt
|
||||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX")
|
||||
target_link_libraries(netconf2 -lcrypt)
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES crypt)
|
||||
# dependencies - libcurl
|
||||
find_package(CURL 7.30.0 REQUIRED)
|
||||
if(TARGET CURL::libcurl)
|
||||
target_link_libraries(netconf2 CURL::libcurl)
|
||||
else()
|
||||
target_link_libraries(netconf2 -llogin)
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES login)
|
||||
target_link_libraries(netconf2 ${CURL_LIBRARIES})
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${CURL_LIBRARY})
|
||||
include_directories(${CURL_INCLUDE_DIRS})
|
||||
endif()
|
||||
|
||||
# crypt (if not found, assume no library needs to be linked)
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
|
||||
set(LIBCRYPT login)
|
||||
else()
|
||||
set(LIBCRYPT crypt)
|
||||
endif()
|
||||
check_library_exists(${LIBCRYPT} crypt "" HAVE_CRYPT)
|
||||
if(HAVE_CRYPT)
|
||||
target_link_libraries(netconf2 ${LIBCRYPT})
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBCRYPT})
|
||||
endif()
|
||||
|
||||
# libpam
|
||||
find_package(LibPAM)
|
||||
if(LibPAM_FOUND)
|
||||
set(HAVE_LIBPAM TRUE)
|
||||
|
||||
target_link_libraries(netconf2 ${LIBPAM_LIBRARIES})
|
||||
list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBPAM_LIBRARIES})
|
||||
include_directories(${LIBPAM_INCLUDE_DIRS})
|
||||
|
||||
message(STATUS "SSH Keyboard Interactive system method: Linux PAM")
|
||||
elseif(HAVE_SHADOW)
|
||||
message(STATUS "SSH Keyboard Interactive system method: local users")
|
||||
else()
|
||||
message(WARNING "SSH Keyboard Interactive system method: disabled")
|
||||
endif()
|
||||
|
||||
# set compiler flag
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH_TLS")
|
||||
endif()
|
||||
|
||||
# dependencies - libval
|
||||
|
@ -263,14 +309,10 @@ if(ENABLE_DNSSEC)
|
|||
endif()
|
||||
|
||||
# dependencies - libyang
|
||||
find_package(LibYANG ${LIBYANG_DEP_SOVERSION_MAJOR} REQUIRED)
|
||||
find_package(LibYANG ${LIBYANG_DEP_SOVERSION} REQUIRED)
|
||||
target_link_libraries(netconf2 ${LIBYANG_LIBRARIES})
|
||||
include_directories(${LIBYANG_INCLUDE_DIRS})
|
||||
|
||||
# header file compatibility - shadow.h and crypt.h
|
||||
check_include_file("shadow.h" HAVE_SHADOW)
|
||||
check_include_file("crypt.h" HAVE_CRYPT)
|
||||
|
||||
# function compatibility - getpeereid on QNX
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
|
||||
target_link_libraries(netconf2 -lsocket)
|
||||
|
@ -281,24 +323,35 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
|
|||
list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
|
||||
endif()
|
||||
|
||||
# generate files
|
||||
# set sources
|
||||
target_sources(netconf2 PRIVATE ${libsrc} ${compatsrc})
|
||||
|
||||
# generate config file
|
||||
configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY)
|
||||
configure_file(nc_client.h.in nc_client.h)
|
||||
configure_file(nc_server.h.in nc_server.h)
|
||||
|
||||
# generate and copy public header files
|
||||
configure_file("${PROJECT_SOURCE_DIR}/nc_client.h.in" "${PROJECT_BINARY_DIR}/include/nc_client.h")
|
||||
configure_file("${PROJECT_SOURCE_DIR}/nc_server.h.in" "${PROJECT_BINARY_DIR}/include/nc_server.h")
|
||||
configure_file("${PROJECT_SOURCE_DIR}/nc_version.h.in" "${PROJECT_BINARY_DIR}/include/nc_version.h")
|
||||
file(COPY ${headers} DESTINATION "${PROJECT_BINARY_DIR}/include/libnetconf2")
|
||||
|
||||
# install YANG modules
|
||||
install(DIRECTORY "${PROJECT_SOURCE_DIR}/modules/" DESTINATION ${YANG_MODULE_DIR} FILES_MATCHING PATTERN "*.yang")
|
||||
|
||||
# install library
|
||||
install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
|
||||
# install headers
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
install(FILES ${headers} ${PROJECT_BINARY_DIR}/src/config.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2)
|
||||
install(FILES ${PROJECT_BINARY_DIR}/include/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
install(FILES ${PROJECT_BINARY_DIR}/include/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
install(FILES ${PROJECT_BINARY_DIR}/include/nc_version.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
install(DIRECTORY ${PROJECT_BINARY_DIR}/include/libnetconf2 DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
|
||||
# install pkg-config file
|
||||
find_package(PkgConfig)
|
||||
if(PKG_CONFIG_FOUND)
|
||||
configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY)
|
||||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||
install(FILES "${PROJECT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||
# check that pkg-config includes the used path
|
||||
execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
|
||||
if(RETURN EQUAL 0)
|
||||
|
@ -310,6 +363,15 @@ if(PKG_CONFIG_FOUND)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
# examples
|
||||
if(ENABLE_EXAMPLES)
|
||||
if(NOT ENABLE_SSH_TLS)
|
||||
message(WARNING "Examples will not be compiled because SSH and TLS are disabled.")
|
||||
else()
|
||||
add_subdirectory(examples)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# tests
|
||||
if(ENABLE_TESTS)
|
||||
enable_testing()
|
||||
|
@ -320,22 +382,28 @@ endif()
|
|||
gen_coverage("test_.*" "test_.*_valgrind")
|
||||
|
||||
# generate doxygen documentation for libnetconf2 API
|
||||
gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "")
|
||||
if(ENABLE_COMMON_TARGETS)
|
||||
gen_doc("${doxy_files}" ${LIBNETCONF2_VERSION} ${LIBNETCONF2_DESCRIPTION} "")
|
||||
endif()
|
||||
|
||||
# generate API/ABI report
|
||||
if ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK")
|
||||
lib_abi_check(netconf2 "${headers}" ${LIBNETCONF2_SOVERSION_FULL} e7402149e5b36de7acab2e38970a3a9d6a8165d5)
|
||||
lib_abi_check(netconf2 "${headers}" ${LIBNETCONF2_SOVERSION_FULL} 15fbc59efa5e6f1f7bea19ab561d03f8852caabb)
|
||||
endif()
|
||||
|
||||
# source files to be covered by the 'format' target and a test with 'format-check' target
|
||||
source_format(${format_sources})
|
||||
|
||||
# clean cmake cache
|
||||
add_custom_target(cleancache
|
||||
COMMAND make clean
|
||||
COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
|
||||
COMMAND rm -rf Makefile Doxyfile
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
if(ENABLE_COMMON_TARGETS)
|
||||
add_custom_target(cleancache
|
||||
COMMAND make clean
|
||||
COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
|
||||
COMMAND rm -rf Makefile Doxyfile
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
endif()
|
||||
|
||||
# uninstall
|
||||
add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")
|
||||
if(ENABLE_COMMON_TARGETS)
|
||||
add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue