project(apt)
cmake_minimum_required(VERSION 3.3.0)
+enable_testing()
+
option(WITH_DOC "Build documentation." OFF)
option(USE_NLS "Localisation support." ON)
# apt-transport-https dependencies
-pkg_check_modules(CURL libcurl REQUIRED)
+find_package(CURL REQUIRED)
if (CURL_FOUND)
set(HAVE_CURL 1)
endif()
endif()
# Configure some variables like package, version and architecture.
-set(PACKAGE "apt")
+set(PACKAGE ${PROJECT_NAME})
+set(PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>")
execute_process(COMMAND dpkg-parsechangelog -SVersion -l${PROJECT_SOURCE_DIR}/debian/changelog
OUTPUT_VARIABLE PACKAGE_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE)
add_subdirectory(ftparchive)
add_subdirectory(methods)
add_subdirectory(po)
+add_subdirectory(test)