summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2022-07-09 19:59:14 +0000
committerivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2022-07-09 19:59:14 +0000
commitd6aa35955c15b2716ef42bcc71998105c3b64be4 (patch)
treeb9a4781dfb85b86076eedbdfe4a3b5ae14840822
parentc73ff3a35160409654ffed734d0f6f1d094cca60 (diff)
downloadlibapr-d6aa35955c15b2716ef42bcc71998105c3b64be4.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"
}
}
]