summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2023-01-17 19:30:03 +0000
committerivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2023-01-17 19:30:03 +0000
commit7e39466ff473718120a1f859cc2cfae01018f600 (patch)
tree422ce6eb20a9a700131ca4465d79d04661bee328
parentf299d68a2f7f43f2406722d070b30a65e57f5750 (diff)
downloadlibapr-7e39466ff473718120a1f859cc2cfae01018f600.tar.gz
Merge r1906751 from 1.8.x:
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.6.x@1906753 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 3418cd8e1..0d073c75d 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)