aboutsummaryrefslogtreecommitdiff
path: root/template/CMakePresets.json
diff options
context:
space:
mode:
authorJohn "Lameguy" Wilbert Villamor <lameguy64@gmail.com>2022-10-19 17:57:06 +0800
committerGitHub <noreply@github.com>2022-10-19 17:57:06 +0800
commite08a3d9366f8ca14a76b3dd569dac1fb9f569748 (patch)
tree33654513b0b184c27f8035dbc405640fcbeb44ab /template/CMakePresets.json
parentc4a2533d21dfd05cde841ea48c67b05e0e6a853f (diff)
parent9b2ffc6078a850b7d354855cca7622090b41f30c (diff)
downloadpsn00bsdk-e08a3d9366f8ca14a76b3dd569dac1fb9f569748.tar.gz
Merge pull request #59 from spicyjpeg/psxmdec
IRQ handler fix, .STR playback example, multiple library builds (v0.21)
Diffstat (limited to 'template/CMakePresets.json')
-rw-r--r--template/CMakePresets.json25
1 files changed, 14 insertions, 11 deletions
diff --git a/template/CMakePresets.json b/template/CMakePresets.json
index d08b334..97d8428 100644
--- a/template/CMakePresets.json
+++ b/template/CMakePresets.json
@@ -1,22 +1,25 @@
{
- "version": 2,
+ "version": 3,
"cmakeMinimumRequired": {
"major": 3,
- "minor": 20,
+ "minor": 21,
"patch": 0
},
"configurePresets": [
{
- "name": "default",
- "displayName": "Default configuration",
- "description": "Use this preset to build the project using PSn00bSDK.",
- "generator": "Ninja",
- "binaryDir": "${sourceDir}/build",
+ "name": "default",
+ "displayName": "Default configuration",
+ "description": "Use this preset to build the project using PSn00bSDK.",
+ "generator": "Ninja",
+ "toolchainFile": "$env{PSN00BSDK_LIBS}/cmake/sdk.cmake",
+ "binaryDir": "${sourceDir}/build",
"cacheVariables": {
- "CMAKE_BUILD_TYPE": "Debug",
- "CMAKE_TOOLCHAIN_FILE": "$env{PSN00BSDK_LIBS}/cmake/sdk.cmake",
- "PSN00BSDK_TC": "",
- "PSN00BSDK_TARGET": "mipsel-none-elf"
+ "CMAKE_BUILD_TYPE": "Debug",
+ "PSN00BSDK_TC": "",
+ "PSN00BSDK_TARGET": "mipsel-none-elf"
+ },
+ "warnings": {
+ "dev": false
}
}
]