X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/9a2aa0e7f21ef33345f6093ca17fab97a678d543..33ee08e4dae7851bc3bcbb932a0563c38c933ead:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index defb4f111..6baa8f14f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 ") 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)