summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2023-01-17 19:27:40 +0000
committerIvan Zhakov <ivan@apache.org>2023-01-17 19:27:40 +0000
commiteb648c6d4977ed91734115edb4073a7b7243bc60 (patch)
tree86a00cbafde62c961a34a9d5251ba1d973b6e97c
parenta8c73cd6c8a2322f18cdf8efafe4a6af796dad2d (diff)
downloadapr-eb648c6d4977ed91734115edb4073a7b7243bc60.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)