summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2023-01-17 19:27:40 +0000
committerivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2023-01-17 19:27:40 +0000
commitb24998818609e9591d6679989c650f2e82a224da (patch)
tree86a00cbafde62c961a34a9d5251ba1d973b6e97c
parent9f95c71187d2a75f59997f19ea8ef5a571556bf9 (diff)
downloadlibapr-b24998818609e9591d6679989c650f2e82a224da.tar.gz
Merge r1905493 from trunk:
CMakeLists.txt: Make CMAKE_MINIMUM_REQUIRED first directive as recommended by CMake documentation [1]. [1] https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.8.x@1906751 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a6c638aee..4baf099cc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -15,10 +15,12 @@
#
# Read README.cmake before using this.
-PROJECT(APR C)
-
+# CMAKE_MINIMUM_REQUIRED should be the first directive in the file:
+# https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
+PROJECT(APR C)
+
OPTION(APR_INSTALL_PRIVATE_H "Install selected private .h files (for httpd)" OFF)
OPTION(APR_HAVE_IPV6 "IPv6 support" ON)
OPTION(INSTALL_PDB "Install .pdb files (if generated)" ON)