This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
usage ()
4
4
{
5
- echo " Usage: $0 [BuildArch] [BuildType] [clean] [verbose] [coverage] [cross] [clangx.y] [skipmscorlib] [includetests ]"
5
+ echo " Usage: $0 [BuildArch] [BuildType] [clean] [verbose] [coverage] [cross] [clangx.y] [skipmscorlib] [skiptests ]"
6
6
echo " BuildArch can be: x64, ARM"
7
7
echo " BuildType can be: Debug, Release"
8
8
echo " clean - optional argument to force a clean build."
@@ -12,7 +12,7 @@ usage()
12
12
echo " cross - optional argument to signify cross compilation,"
13
13
echo " - will use ROOTFS_DIR environment variable if set."
14
14
echo " skipmscorlib - do not build mscorlib.dll even if mono is installed."
15
- echo " includetests - build the tests in the 'tests' subdirectory as well ."
15
+ echo " skiptests - skip the tests in the 'tests' subdirectory."
16
16
17
17
exit 1
18
18
}
187
187
__MSBuildBuildArch=x64
188
188
__BuildType=Debug
189
189
__CodeCoverage=
190
- __IncludeTests=
190
+ __IncludeTests=Include_Tests
191
191
192
192
# Set the various build properties here so that CMake and MSBuild can pick them up
193
193
__ProjectDir=" $__ProjectRoot "
@@ -262,7 +262,9 @@ for i in "$@"
262
262
__SkipMSCorLib=1
263
263
;;
264
264
includetests)
265
- __IncludeTests=Include_Tests
265
+ ;;
266
+ skiptests)
267
+ __IncludeTests=
266
268
;;
267
269
* )
268
270
__UnprocessedBuildArgs=" $__UnprocessedBuildArgs $i "
You can’t perform that action at this time.
0 commit comments