~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to release.bat

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
REM
 
2
REM This batch file is used to generate wxWidgets builds on Windows, for
 
3
REM Windows. We cannot support cross-compiling for Linux.
 
4
REM
 
5
REM The Linux script supports building wxWidgets for Linux (GTK) and
 
6
REM Windows (GCC versions at least)
 
7
REM
 
8
REM NOTE: In order to build vc_ configurations, you must execute this batch
 
9
REM       file from a Visual Studio Developer prompt, or else have nmake and
 
10
REM       cl in your global path
 
11
 
 
12
 
 
13
IF EXIST build_gcc_dll GOTO B_GCC_DLL
 
14
mkdir build_gcc_dll
 
15
:B_GCC_DLL
 
16
cd build_gcc_dll
 
17
call ..\configs\configure-gcc_dll.bat
 
18
mingw32-make -j 6 package > build_log.txt 2>&1
 
19
cd ..
 
20
 
 
21
IF EXIST build_vc_dll GOTO B_VC_DLL
 
22
mkdir build_vc_dll
 
23
:B_VC_DLL
 
24
cd build_vc_dll
 
25
call ..\configs\configure-nmake-vc_dll.bat
 
26
nmake package > build_log.txt 2>&1
 
27
cd ..