diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-09-03 13:49:01 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-11-01 16:34:09 -0500 |
commit | 4917383e6f52f0e44f63c60a645f1dd7e8f8d5f9 (patch) | |
tree | d668e8499163baf17c76b30ffd95ae809c129521 /src/samples/samples.cmd | |
parent | 293a609a10765c91dd5ef3f535d9f6f8699a075d (diff) | |
download | wix-4917383e6f52f0e44f63c60a645f1dd7e8f8d5f9.tar.gz wix-4917383e6f52f0e44f63c60a645f1dd7e8f8d5f9.tar.bz2 wix-4917383e6f52f0e44f63c60a645f1dd7e8f8d5f9.zip |
Build thmviewer.
Diffstat (limited to 'src/samples/samples.cmd')
-rw-r--r-- | src/samples/samples.cmd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/samples/samples.cmd b/src/samples/samples.cmd new file mode 100644 index 00000000..8ce4ffe0 --- /dev/null +++ b/src/samples/samples.cmd | |||
@@ -0,0 +1,18 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | |||
4 | @set _C=Debug | ||
5 | :parse_args | ||
6 | @if /i "%1"=="release" set _C=Release | ||
7 | @if not "%1"=="" shift & goto parse_args | ||
8 | |||
9 | @echo Building samples %_C% | ||
10 | |||
11 | :: samples | ||
12 | |||
13 | nuget restore || exit /b | ||
14 | |||
15 | msbuild -t:Build -p:Configuration=%_C% || exit /b | ||
16 | |||
17 | @popd | ||
18 | @endlocal | ||