diff options
author | Rob Mensching <rob@firegiant.com> | 2022-05-24 21:59:28 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-05-24 22:44:20 -0700 |
commit | ea7b44abd725139535475a96dbcbc5b9c39539a2 (patch) | |
tree | 87e83edbfaa6c1877a907131c001f9dd58b9f2c1 /build.cmd | |
parent | a79996ed98978a6bf8f87020331ec5f95d9540bf (diff) | |
download | wix-ea7b44abd725139535475a96dbcbc5b9c39539a2.tar.gz wix-ea7b44abd725139535475a96dbcbc5b9c39539a2.tar.bz2 wix-ea7b44abd725139535475a96dbcbc5b9c39539a2.zip |
Rename build.cmd to devbuild.cmd to better represent its purpose
The build.cmd in the root of the repository is intended for use by
developers looking to build the full WiX Toolset. Official builds
use the appropriate build files in the src folder.
Renaming build.cmd to devbuild.cmd better represents its purpose.
As a bonus, renaming to devbuild.cmd also removes TAB completion
conflict with the .\build folder.
Diffstat (limited to 'build.cmd')
-rw-r--r-- | build.cmd | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/build.cmd b/build.cmd deleted file mode 100644 index 2bd996cb..00000000 --- a/build.cmd +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | @echo off | ||
2 | |||
3 | setlocal | ||
4 | pushd %~dp0 | ||
5 | |||
6 | :parse_args | ||
7 | if /i "%1"=="release" set _C=Release | ||
8 | if /i "%1"=="clean" set _CLEAN=1 | ||
9 | if not "%1"=="" shift & goto parse_args | ||
10 | |||
11 | if not "%_CLEAN%"=="" src\clean.cmd | ||
12 | src\build_all.cmd %_C% | ||
13 | |||
14 | popd | ||
15 | endlocal | ||