summaryrefslogtreecommitdiffstats
path: root/HDF5Examples/CMakePresets.json
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-11-27 21:30:15 (GMT)
committerGitHub <noreply@github.com>2023-11-27 21:30:15 (GMT)
commitfc88fcde1091cf12c1e88c783a14ee0f1cffe31c (patch)
tree91b88b62cd30ed37ee9227e43989e95035be43c3 /HDF5Examples/CMakePresets.json
parenta067bf71f57723d2dfca7dfe2ffd9ea502eccd4f (diff)
downloadhdf5-fc88fcde1091cf12c1e88c783a14ee0f1cffe31c.zip
hdf5-fc88fcde1091cf12c1e88c783a14ee0f1cffe31c.tar.gz
hdf5-fc88fcde1091cf12c1e88c783a14ee0f1cffe31c.tar.bz2
Develop merge examples (#3851)
* Merge examples repo into library * Change grepTest to be more fault-tolerant * Update examples macro file * Exclude all Fortran examples from doxygen
Diffstat (limited to 'HDF5Examples/CMakePresets.json')
-rw-r--r--HDF5Examples/CMakePresets.json180
1 files changed, 180 insertions, 0 deletions
diff --git a/HDF5Examples/CMakePresets.json b/HDF5Examples/CMakePresets.json
new file mode 100644
index 0000000..263ff29
--- /dev/null
+++ b/HDF5Examples/CMakePresets.json
@@ -0,0 +1,180 @@
+{
+ "version": 6,
+ "include": [
+ "config/cmake-presets/hidden-presets.json"
+ ],
+ "configurePresets": [
+ {
+ "name": "ci-base-examples",
+ "hidden": true,
+ "cacheVariables": {
+ "CPACK_PACKAGE_VERSION": "2.0.4",
+ "HDF5_NAMESPACE": {"type": "STRING", "value": "hdf5::"},
+ "HDF5_PACKAGE_NAME": {"type": "STRING", "value": "hdf5"},
+ "H5EX_BUILD_TESTING": "ON"
+ }
+ },
+ {
+ "name": "ci-StdJava",
+ "hidden": true,
+ "cacheVariables": {
+ "HDF_BUILD_JAVA": "ON"
+ }
+ },
+ {
+ "name": "ci-StdFortran",
+ "hidden": true,
+ "cacheVariables": {
+ "HDF_BUILD_FORTRAN": "ON"
+ }
+ },
+ {
+ "name": "ci-StdPlugins",
+ "hidden": true,
+ "cacheVariables": {
+ "HDF_BUILD_FILTERS": "ON"
+ }
+ },
+ {
+ "name": "ci-StdShar",
+ "hidden": true,
+ "inherits": ["ci-base", "ci-base-examples"],
+ "cacheVariables": {
+ "BUILD_SHARED_LIBS": "ON",
+ "USE_SHARED_LIBS": "ON"
+ }
+ },
+ {
+ "name": "ci-StdShar-MSVC",
+ "description": "MSVC Standard Config for x64 (Release)",
+ "inherits": [
+ "ci-x64-Release-MSVC",
+ "ci-StdShar"
+ ]
+ },
+ {
+ "name": "ci-StdShar-Clang",
+ "description": "Clang Standard Config for x64 (Release)",
+ "inherits": [
+ "ci-x64-Release-Clang",
+ "ci-StdShar"
+ ]
+ },
+ {
+ "name": "ci-StdShar-GNUC",
+ "description": "GNUC Standard Config for x64 (Release)",
+ "inherits": [
+ "ci-x64-Release-GNUC",
+ "ci-StdShar"
+ ]
+ },
+ {
+ "name": "ci-StdShar-Intel",
+ "description": "Intel Standard Config for x64 (Release)",
+ "inherits": [
+ "ci-x64-Release-Intel",
+ "ci-StdShar"
+ ]
+ }
+ ],
+ "buildPresets": [
+ {
+ "name": "ci-StdShar-MSVC",
+ "description": "MSVC Standard Build for x64 (Release)",
+ "configurePreset": "ci-StdShar-MSVC",
+ "inherits": [
+ "ci-x64-Release-MSVC"
+ ]
+ },
+ {
+ "name": "ci-StdShar-Clang",
+ "description": "Clang Standard Build for x64 (Release)",
+ "configurePreset": "ci-StdShar-Clang",
+ "inherits": [
+ "ci-x64-Release-Clang"
+ ]
+ },
+ {
+ "name": "ci-StdShar-GNUC",
+ "description": "GNUC Standard Build for x64 (Release)",
+ "configurePreset": "ci-StdShar-GNUC",
+ "verbose": false,
+ "inherits": [
+ "ci-x64-Release-GNUC"
+ ]
+ },
+ {
+ "name": "ci-StdShar-Intel",
+ "description": "Intel Standard Build for x64 (Release)",
+ "configurePreset": "ci-StdShar-Intel",
+ "verbose": false,
+ "inherits": [
+ "ci-x64-Release-Intel"
+ ]
+ }
+ ],
+ "testPresets": [
+ {
+ "name": "ci-StdShar-MSVC",
+ "configurePreset": "ci-StdShar-MSVC",
+ "inherits": [
+ "ci-x64-Release-MSVC"
+ ]
+ },
+ {
+ "name": "ci-StdShar-Clang",
+ "configurePreset": "ci-StdShar-Clang",
+ "inherits": [
+ "ci-x64-Release-Clang"
+ ]
+ },
+ {
+ "name": "ci-StdShar-GNUC",
+ "configurePreset": "ci-StdShar-GNUC",
+ "inherits": [
+ "ci-x64-Release-GNUC"
+ ]
+ },
+ {
+ "name": "ci-StdShar-Intel",
+ "configurePreset": "ci-StdShar-Intel",
+ "inherits": [
+ "ci-x64-Release-Intel"
+ ]
+ }
+ ],
+ "workflowPresets": [
+ {
+ "name": "ci-StdShar-MSVC",
+ "steps": [
+ {"type": "configure", "name": "ci-StdShar-MSVC"},
+ {"type": "build", "name": "ci-StdShar-MSVC"},
+ {"type": "test", "name": "ci-StdShar-MSVC"}
+ ]
+ },
+ {
+ "name": "ci-StdShar-Clang",
+ "steps": [
+ {"type": "configure", "name": "ci-StdShar-Clang"},
+ {"type": "build", "name": "ci-StdShar-Clang"},
+ {"type": "test", "name": "ci-StdShar-Clang"}
+ ]
+ },
+ {
+ "name": "ci-StdShar-GNUC",
+ "steps": [
+ {"type": "configure", "name": "ci-StdShar-GNUC"},
+ {"type": "build", "name": "ci-StdShar-GNUC"},
+ {"type": "test", "name": "ci-StdShar-GNUC"}
+ ]
+ },
+ {
+ "name": "ci-StdShar-Intel",
+ "steps": [
+ {"type": "configure", "name": "ci-StdShar-Intel"},
+ {"type": "build", "name": "ci-StdShar-Intel"},
+ {"type": "test", "name": "ci-StdShar-Intel"}
+ ]
+ }
+ ]
+}