]> git.saurik.com Git - apt.git/blobdiff - CMakeLists.txt
debian: make autopkgtest run with CMake build dir
[apt.git] / CMakeLists.txt
index defb4f1112c20b755f99b222786ef4b625c4806a..9e85e7b8401c19124ac6e020f5fb24422662f5c2 100644 (file)
@@ -5,6 +5,8 @@
 project(apt)
 cmake_minimum_required(VERSION 3.3.0)
 
+enable_testing()
+
 option(WITH_DOC "Build documentation." OFF)
 option(USE_NLS "Localisation support." ON)
 
@@ -54,7 +56,7 @@ endif()
 
 
 # apt-transport-https dependencies
-pkg_check_modules(CURL libcurl REQUIRED)
+find_package(CURL REQUIRED)
 if (CURL_FOUND)
   set(HAVE_CURL 1)
 endif()
@@ -108,7 +110,8 @@ if (CMAKE_USE_PTHREADS_INIT)
 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)
@@ -133,3 +136,4 @@ add_subdirectory(dselect)
 add_subdirectory(ftparchive)
 add_subdirectory(methods)
 add_subdirectory(po)
+add_subdirectory(test)