summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-07-09 19:59:14 +0000
committerIvan Zhakov <ivan@apache.org>2022-07-09 19:59:14 +0000
commit5760515e115f00c97078976fa3d69863fde99215 (patch)
treeb9a4781dfb85b86076eedbdfe4a3b5ae14840822
parent3741a5f74f39564484ec624639b23fbb1999c1e5 (diff)
downloadapr-5760515e115f00c97078976fa3d69863fde99215.tar.gz
On 1.8.x branch:
* CMakePresets.json: Enable APR_BUILD_TESTAPR by default for dev builds. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.8.x@1902612 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CMakePresets.json12
1 files changed, 8 insertions, 4 deletions
diff --git a/CMakePresets.json b/CMakePresets.json
index b71958475..9130cb8d5 100644
--- a/CMakePresets.json
+++ b/CMakePresets.json
@@ -28,7 +28,8 @@
"strategy": "external"
},
"cacheVariables": {
- "CMAKE_BUILD_TYPE": "Debug"
+ "CMAKE_BUILD_TYPE": "Debug",
+ "APR_BUILD_TESTAPR": "ON"
}
},
{
@@ -37,7 +38,8 @@
"description": "Target Windows (64-bit) with the Visual Studio development environment. (RelWithDebInfo)",
"inherits": "x64-debug",
"cacheVariables": {
- "CMAKE_BUILD_TYPE": "Release"
+ "CMAKE_BUILD_TYPE": "Release",
+ "APR_BUILD_TESTAPR": "ON"
}
},
{
@@ -50,7 +52,8 @@
"strategy": "external"
},
"cacheVariables": {
- "CMAKE_BUILD_TYPE": "Debug"
+ "CMAKE_BUILD_TYPE": "Debug",
+ "APR_BUILD_TESTAPR": "ON"
}
},
{
@@ -59,7 +62,8 @@
"description": "Target Windows (32-bit) with the Visual Studio development environment. (RelWithDebInfo)",
"inherits": "x86-debug",
"cacheVariables": {
- "CMAKE_BUILD_TYPE": "Release"
+ "CMAKE_BUILD_TYPE": "Release",
+ "APR_BUILD_TESTAPR": "ON"
}
}
]