Fix setup-build.ps1 for GBA builds
This commit is contained in:
parent
2141b12b29
commit
0b6254a4fb
@ -10,7 +10,9 @@ $project=(Get-Location).Path
|
|||||||
if (${target} -eq "windows") {
|
if (${target} -eq "windows") {
|
||||||
$toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/Mingw.cmake"
|
$toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/Mingw.cmake"
|
||||||
} elseif (${target} -eq "gba") {
|
} elseif (${target} -eq "gba") {
|
||||||
$toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/GBA.cmake -DNOSTALGIA_BUILD_TYPE=GBA -DOX_USE_STDLIB=OFF"
|
$toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/GBA.cmake"
|
||||||
|
$nostalgiaBuildType="-DNOSTALGIA_BUILD_TYPE=GBA"
|
||||||
|
$oxUseStdLib="-DOX_USE_STDLIB=OFF"
|
||||||
}
|
}
|
||||||
|
|
||||||
if (${buildType} -eq "asan") {
|
if (${buildType} -eq "asan") {
|
||||||
@ -35,6 +37,8 @@ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON `
|
|||||||
-DCMAKE_INSTALL_RPATH="$project/dist/${target}-${buildType}/lib/nostalgia" `
|
-DCMAKE_INSTALL_RPATH="$project/dist/${target}-${buildType}/lib/nostalgia" `
|
||||||
-DNOSTALGIA_IDE_BUILD=OFF `
|
-DNOSTALGIA_IDE_BUILD=OFF `
|
||||||
$buildTool `
|
$buildTool `
|
||||||
|
$nostalgiaBuildType `
|
||||||
|
$oxUseStdLib `
|
||||||
$buildTypeArgs `
|
$buildTypeArgs `
|
||||||
$qtPath `
|
$qtPath `
|
||||||
$toolchain `
|
$toolchain `
|
||||||
|
Loading…
Reference in New Issue
Block a user