Skip to content

Commit

Permalink
Update CMakePresets. Add more targets. (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
kohnech authored Oct 9, 2023
1 parent 5e151ee commit 72e5611
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}
},
{
"name": "apple-m1-base",
"name": "apple-mseries-base",
"hidden": true,
"binaryDir": "${sourceDir}/build/${presetName}",
"architecture": {
Expand Down Expand Up @@ -288,18 +288,31 @@
]
},
{
"name": "apple-m1-ninja-debug",
"description": "Apple M1 preset",
"name": "apple-mseries-ninja-debug",
"description": "Apple M series Debug",
"inherits": [
"apple-m1-base",
"apple-mseries-base",
"ninja",
"_debug"
],
"cacheVariables": {
"ENABLE_TESTS": "OFF",
"BUILD_SHARED_LIBS": false,
"ENABLE_COMPONENT_TESTS": "OFF"
}
]
},
{
"name": "apple-mseries-ninja-release",
"description": "Apple M series Release",
"inherits": [
"apple-mseries-base",
"ninja",
"_release"
]
},
{
"name": "apple-mseries-ninja-relwithdebinfo",
"description": "Apple M series RelWithDebInfo",
"inherits": [
"apple-mseries-base",
"ninja",
"_relwithdebinfo"
]
}
]
}

0 comments on commit 72e5611

Please sign in to comment.