File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ platform=x64
55vs=vs2022
66configuration=Release
77build_only=false
8+ disable_tests=true
89ci=false
910target_framework=
1011verbosity=minimal
@@ -63,10 +64,10 @@ generate()
6364 fi
6465
6566 if [ " $os " = " linux" ] || [ " $os " = " macosx" ]; then
66- " $builddir /premake.sh" --file=" $builddir /premake5.lua" gmake2 --os=$os --arch=$platform --configuration=$configuration --target-framework=$target_framework " $@ "
67+ " $builddir /premake.sh" --file=" $builddir /premake5.lua" gmake2 --os=$os --arch=$platform --configuration=$configuration --target-framework=$target_framework --disable-tests= $disable_tests " $@ "
6768 fi
6869
69- " $builddir /premake.sh" --file=" $builddir /premake5.lua" $vs --os=$os --arch=$platform --configuration=$configuration --target-framework=$target_framework
70+ " $builddir /premake.sh" --file=" $builddir /premake5.lua" $vs --os=$os --arch=$platform --configuration=$configuration --target-framework=$target_framework --disable-tests= $disable_tests
7071}
7172
7273restore ()
@@ -251,6 +252,9 @@ while [[ $# > 0 ]]; do
251252 -build_only)
252253 build_only=true
253254 ;;
255+ -disable-tests)
256+ disable_tests=true
257+ ;;
254258 esac
255259 shift
256260done
You can’t perform that action at this time.
0 commit comments