You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by iv...@apache.org on 2022/07/09 19:59:15 UTC

svn commit: r1902612 - /apr/apr/branches/1.8.x/CMakePresets.json

Author: ivan
Date: Sat Jul  9 19:59:14 2022
New Revision: 1902612

URL: http://svn.apache.org/viewvc?rev=1902612&view=rev
Log:
On 1.8.x branch:
  * CMakePresets.json: Enable APR_BUILD_TESTAPR by default for
    dev builds.

Modified:
    apr/apr/branches/1.8.x/CMakePresets.json

Modified: apr/apr/branches/1.8.x/CMakePresets.json
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.8.x/CMakePresets.json?rev=1902612&r1=1902611&r2=1902612&view=diff
==============================================================================
--- apr/apr/branches/1.8.x/CMakePresets.json (original)
+++ apr/apr/branches/1.8.x/CMakePresets.json Sat Jul  9 19:59:14 2022
@@ -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"
       }
     }
   ]