diff options
| author | John "Lameguy" Wilbert Villamor <lameguy64@gmail.com> | 2022-03-25 09:22:20 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-25 09:22:20 +0800 |
| commit | 975e614b3c840e2f717adac1d1cb9cee4e5e561b (patch) | |
| tree | 6584ce5b0dbe27a466c95c81fac61b0d90f627bd /CMakePresets.json | |
| parent | 05d44488bd5587786f4bd0286fc0f555c79aa46a (diff) | |
| parent | 45168ae43e29aa5930ee5a206475ae836078915f (diff) | |
| download | psn00bsdk-975e614b3c840e2f717adac1d1cb9cee4e5e561b.tar.gz | |
Merge pull request #46 from spicyjpeg/psxmdec
Critical ldscript fixes, initial MDEC support and CI updates
Diffstat (limited to 'CMakePresets.json')
| -rw-r--r-- | CMakePresets.json | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/CMakePresets.json b/CMakePresets.json index d71c1ae..b103270 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -11,14 +11,16 @@ "displayName": "Default configuration", "description": "Use this preset when building the SDK for local installation.", "generator": "Ninja", - "binaryDir": "${sourceDir}/build" + "binaryDir": "${sourceDir}/build", + "warnings": { + "dev": false + } }, { "name": "package", "displayName": "Installer package", "description": "Use this preset to build installer packages via CPack.", - "generator": "Ninja", - "binaryDir": "${sourceDir}/build", + "inherits": "default", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "SKIP_EXAMPLES": "ON", @@ -29,11 +31,12 @@ "name": "ci", "displayName": "CI build", "description": "This preset is used by GitHub Actions to build PSn00bSDK.", - "generator": "Ninja", + "inherits": "default", "binaryDir": "${sourceDir}/../build", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", "BUNDLE_TOOLCHAIN": "ON", + "LIBPSN00B_GENERATOR": "Ninja", "PSN00BSDK_TARGET": "$env{GCC_TARGET}", "PSN00BSDK_GIT_TAG": "$env{GITHUB_REF_NAME}", "PSN00BSDK_GIT_COMMIT": "$env{GITHUB_SHA}" |
