diff options
| author | spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> | 2022-02-07 01:06:33 +0100 |
|---|---|---|
| committer | spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> | 2022-02-07 02:35:02 +0100 |
| commit | 40b7d95e9b16252d1aebb0706f3bba885f6e67cf (patch) | |
| tree | ec7604008134f312c403f895661c4c4d6caa96b6 /CMakePresets.json | |
| parent | 57cda18641d16ba4e4fec52b5514e48db8ee4593 (diff) | |
| download | psn00bsdk-40b7d95e9b16252d1aebb0706f3bba885f6e67cf.tar.gz | |
Add LIBPSN00B_GENERATOR option, fix .incbin alignment
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}" |
