This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 31ae41d480 cmake: adding a release preset (#10717)
31ae41d480 is described below
commit 31ae41d4802d918b54fdf1914eb72d3df83205f7
Author: Bryan Call <[email protected]>
AuthorDate: Fri Nov 3 08:36:37 2023 -0700
cmake: adding a release preset (#10717)
Used for benchmarking and users can use it
---
CMakePresets.json | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CMakePresets.json b/CMakePresets.json
index 2474514675..9bf85a738b 100644
--- a/CMakePresets.json
+++ b/CMakePresets.json
@@ -36,6 +36,19 @@
"CMAKE_INSTALL_CACHEDIR": "var/trafficserver"
}
},
+ {
+ "name": "release",
+ "displayName": "Release build",
+ "description": "Release build with Ninja generator",
+ "generator": "Ninja",
+ "binaryDir": "${sourceDir}/build-release",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Release",
+ "CMAKE_COMPILE_WARNING_AS_ERROR": "OFF",
+ "CMAKE_INSTALL_PREFIX": "/opt/ats",
+ "BUILD_EXPERIMENTAL_PLUGINS": "ON"
+ }
+ },
{
"name": "autest",
"inherits": ["default"],