]> git.saurik.com Git - apt.git/blobdiff - CMakeLists.txt
CMake: Set PACKAGE_MAIL variable
[apt.git] / CMakeLists.txt
index defb4f1112c20b755f99b222786ef4b625c4806a..6baa8f14f3e8507368ab69c8868008a957dbaaf0 100644 (file)
@@ -54,7 +54,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 +108,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 +134,4 @@ add_subdirectory(dselect)
 add_subdirectory(ftparchive)
 add_subdirectory(methods)
 add_subdirectory(po)
+add_subdirectory(test)