diff options
Diffstat (limited to 'NvCloth/BuildProjectsOsx.sh')
| -rw-r--r-- | NvCloth/BuildProjectsOsx.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/NvCloth/BuildProjectsOsx.sh b/NvCloth/BuildProjectsOsx.sh index e25cffc..93f7c1d 100644 --- a/NvCloth/BuildProjectsOsx.sh +++ b/NvCloth/BuildProjectsOsx.sh @@ -25,3 +25,11 @@ cd compiler/osx64-cmake/ $CMAKE --build . --target ALL_BUILD --clean-first --config debug -- -parallelizeTargets -jobs 5 || exit 1 cd ../../ +cd compiler/osx64-cmake/ +$CMAKE --build . --target ALL_BUILD --clean-first --config profile -- -parallelizeTargets -jobs 5 || exit 1 +cd ../../ + +cd compiler/osx64-cmake/ +$CMAKE --build . --target ALL_BUILD --clean-first --config checked -- -parallelizeTargets -jobs 5 || exit 1 +cd ../../ + |