Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
aaa1767b
Commit
aaa1767b
authored
Jun 27, 2016
by
Steve Dower
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds batch file to build nuget packages.
parent
33128c81
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
+55
-0
Tools/nuget/build.bat
Tools/nuget/build.bat
+55
-0
No files found.
Tools/nuget/build.bat
0 → 100644
View file @
aaa1767b
@echo
off
setlocal
set
D
=
%~dp0
set
PCBUILD
=
%D%
..\..\PCBuild\
set
BUILDX86
=
set
BUILDX64
=
set
REBUILD
=
set
OUTPUT
=
set
PACKAGES
=
:CheckOpts
if
"
%
~1"
EQU
"-h"
goto
Help
if
"
%
~1"
EQU
"-x86"
(
set
BUILDX86
=
1
)
&&
shift
&&
goto
CheckOpts
if
"
%
~1"
EQU
"-x64"
(
set
BUILDX64
=
1
)
&&
shift
&&
goto
CheckOpts
if
"
%
~1"
EQU
"-r"
(
set
REBUILD
=
-r
)
&&
shift
&&
goto
CheckOpts
if
"
%
~1"
EQU
"-o"
(
set
OUTPUT
=
"/p:OutputPath=
%
~2"
)
&&
shift
&&
shift
&&
goto
CheckOpts
if
"
%
~1"
EQU
"--out"
(
set
OUTPUT
=
"/p:OutputPath=
%
~2"
)
&&
shift
&&
shift
&&
goto
CheckOpts
if
"
%
~1"
EQU
"-p"
(
set
PACKAGES
=
%PACKAGES%
%
~
2
)
&&
shift
&&
shift
&&
goto
CheckOpts
if
not
defined
BUILDX86
if
not
defined
BUILDX64
(
set
BUILDX86
=
1
)
&&
(
set
BUILDX64
=
1
)
call
"
%D%
..\msi\get_externals.bat"
call
"
%PCBUILD%
env.bat"
x86
if
defined
PACKAGES
set
PACKAGES
=
"/p:Packages=
%PACKAGES%
"
if
defined
BUILDX86
(
if
defined
REBUILD
(
call
"
%PCBUILD%
build.bat"
-e -r
)
else
if
not
exist
"
%PCBUILD%
win32\python.exe"
call
"
%PCBUILD%
build.bat"
-e
if
errorlevel
1
goto
:eof
msbuild
"
%D%
make_pkg.proj"
/p
:Configuration
=
Release
/p
:Platform
=
x86
%OUTPUT%
%PACKAGES%
if
errorlevel
1
goto
:eof
)
if
defined
BUILDX64
(
if
defined
REBUILD
(
call
"
%PCBUILD%
build.bat"
-p
x64
-e -r
)
else
if
not
exist
"
%PCBUILD%
amd64\python.exe"
call
"
%PCBUILD%
build.bat"
-p
x64
-e
if
errorlevel
1
goto
:eof
msbuild
"
%D%
make_pkg.proj"
/p
:Configuration
=
Release
/p
:Platform
=
x64
%OUTPUT%
%PACKAGES%
if
errorlevel
1
goto
:eof
)
exit
/B
0
:Help
echo
build
.bat
[
-x
86
]
[
-x
64
]
[-
-out
DIR
]
[
-r
]
[
-h
]
echo
.
echo
-x
86
Build
x86
installers
echo
-x
64
Build
x64
installers
echo
-r
Rebuild
rather
than
incremental
build
echo
-
-out
[
DIR
]
Override
output
directory
echo
-h
Show
usage
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment