Batch files to build Harbour
Posted: Wed Jun 30, 2010 7:56 am
checkout.bat (To download the Harbour files from its repository)
svn.exe is available from here:
http://www.fivetechsoft.com/files/software/svn.zip
go.bat (for Borland C)
go64.bat (for Microsoft VC64)
gog.bat (for MinGW gcc)
Code: Select all
svn.exe co https://harbour-project.svn.sourceforge.net/svnroot/harbour-project/trunk harbour
http://www.fivetechsoft.com/files/software/svn.zip
go.bat (for Borland C)
Code: Select all
set HB_COMPILER=bcc
set path=c:\bcc582\bin
win-make.exe
Code: Select all
set HB_COMPILER=msvc64
set path=c:\vc64\bin
set include=c:\vc64\include
set lib=c:\vc64\lib
win-make.exe
Code: Select all
set HB_COMPILER=mingw
set path=c:\mingw\bin
win-make.exe