Skip to content

Commit

Permalink
dd intel presets
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Nov 10, 2023
1 parent 952d6ed commit b786e73
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 2 deletions.
34 changes: 33 additions & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@
"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": [
Expand Down Expand Up @@ -94,6 +102,15 @@
"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": [
Expand All @@ -117,6 +134,13 @@
"inherits": [
"ci-x64-Release-GNUC"
]
},
{
"name": "ci-StdShar-Intel",
"configurePreset": "ci-StdShar-Intel",
"inherits": [
"ci-x64-Release-Intel"
]
}
],
"workflowPresets": [
Expand All @@ -143,6 +167,14 @@
{"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"}
]
}
]
}
}
67 changes: 66 additions & 1 deletion config/cmake-presets/hidden-presets.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,28 @@
"ci-Release",
"ci-GNUC"
]
},
{
"name": "ci-x64-Debug-Intel",
"description": "Intel for x64 (Debug)",
"hidden": true,
"inherits": [
"ci-base",
"ci-x64",
"ci-Debug",
"ci-Intel"
]
},
{
"name": "ci-x64-Release-Intel",
"description": "Intel for x64 (Release)",
"hidden": true,
"inherits": [
"ci-base",
"ci-x64",
"ci-Release",
"ci-Intel"
]
}
],
"buildPresets": [
Expand Down Expand Up @@ -219,6 +241,24 @@
"inherits": [
"ci-base"
]
},
{
"name": "ci-x64-Debug-Intel",
"configurePreset": "ci-x64-Debug-Intel",
"hidden": true,
"inherits": [
"ci-base"
],
"configuration": "Debug"
},
{
"name": "ci-x64-Release-Intel",
"configurePreset": "ci-x64-Release-Intel",
"hidden": true,
"inherits": [
"ci-base"
],
"configuration": "RelWithDebInfo"
}
],
"testPresets": [
Expand Down Expand Up @@ -286,6 +326,22 @@
"inherits": [
"ci-base"
]
},
{
"name": "ci-x64-Debug-Intel",
"configurePreset": "ci-x64-Debug-Intel",
"hidden": true,
"inherits": [
"ci-base"
]
},
{
"name": "ci-x64-Release-Intel",
"configurePreset": "ci-x64-Release-Intel",
"hidden": true,
"inherits": [
"ci-base"
],
}
],
"packagePresets": [
Expand Down Expand Up @@ -323,6 +379,15 @@
"generators": [
"TGZ"
]
},
{
"name": "ci-x64-Release-Intel",
"configurePreset": "ci-x64-Release-Intel",
"hidden": true,
"inherits": "ci-base",
"generators": [
"TGZ"
]
}
]
}
}

0 comments on commit b786e73

Please sign in to comment.