forked from swganh/mmoserver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuildServer.bat
More file actions
1074 lines (831 loc) · 31.5 KB
/
Copy pathBuildServer.bat
File metadata and controls
1074 lines (831 loc) · 31.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@echo off
SETLOCAL EnableDelayedExpansion
rem BuildServer.bat
rem
rem This is the build script used for building SWGANH and it's dependencies
rem using Microsoft tools.
rem ----------------------------------------------------------------------------
rem ---Start of Main Execution -------------------------------------------------
rem Initialize environment variable defaults
call :SET_DEFAULTS
rem Process command line arguments first
goto :PROCESS_ARGUMENTS
:CONTINUE_FROM_PROCESS_ARGUMENTS
rem Build the environment and bail out if it fails
call :BUILD_ENVIRONMENT
if x%environment_built% == x goto :eof
cd %PROJECT_BASE%
if %SKIPHEIGHTMAPS% == false (
call :DOWNLOAD_DATA_FILES
)
call :BUILD_DEPENDENCIES
if not exist "deps" (
echo Missing SWGANH dependencies!
echo.
echo Download the dependencies from %DEPENDENCIES_URL% and unpack it
echo into the root project directory, then run this script again.
exit /b 1
)
if %DEPENDENCIESONLY% == true goto :eof
call :BUILD_PROJECT
if not %ERRORLEVEL% == 0 (
if %HALT_ON_ERROR% == true (set /p halt=*** BUILD FAILED... PRESS ENTER TO CONTINUE ***)
exit /b %ERRORLEVEL%
)
if "%DBINSTALL%" == "true" (
call :INITIALIZE_DATABASE
if not %ERRORLEVEL% == 0 (
if %HALT_ON_ERROR% == true (set /p halt=*** BUILD FAILED... PRESS ENTER TO CONTINUE ***)
exit /b %ERRORLEVEL%
)
)
if not "%BUILDNUMBER%" == "false" (
if "%BUILD_TYPE%" == "debug" (
echo %BUILDNUMBER% >> bin\Debug\VERSION
)
if "%BUILD_TYPE%" == "release" (
echo %BUILDNUMBER% >> bin\Release\VERSION
)
if "%BUILD_TYPE%" == "all" (
echo %BUILDNUMBER% >> bin\Debug\VERSION
echo %BUILDNUMBER% >> bin\Release\VERSION
)
)
echo.
echo Server Successfully Built^^!
echo This window will close shortly.
call :SLEEP 10
goto :eof
rem --- End of Main Execution --------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Helper Functions -------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of SET_DEFAULTS --------------------------------------------------
:SET_DEFAULTS
set DEPENDENCIES_VERSION=0.1.2
set DEPENDENCIES_FILE=mmoserver-deps-%DEPENDENCIES_VERSION%.zip
set DEPENDENCIES_URL=http://github.com/downloads/swganh/mmoserver/%DEPENDENCIES_FILE%
set "PROJECT_BASE=%~dp0"
set BUILD_TYPE=debug
set MSVC_VERSION=
set REBUILD=build
set ALLHEIGHTMAPS=false
set SKIPHEIGHTMAPS=false
set DEPENDENCIESONLY=false
set BUILDNUMBER=0
set BUILD_ERROR=false
set HALT_ON_ERROR=true
set halt=
goto :eof
rem --- End of SET_DEFAULTS ----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of PROCESS_ARGUMENTS ---------------------------------------------
:PROCESS_ARGUMENTS
if "%~0" == "" goto :CONTINUE_FROM_PROCESS_ARGUMENTS
if "%~0" == "-h" (
echo msvc_build.cmd Help
echo.
echo " /builddeps Builds only the project dependencies"
echo " /allheightmaps Downloads all of the heightmaps"
echo " /nohaltonerror Skips halting on errors"
echo " /skipheightmaps Skips downloading heightmap files"
echo " /rebuild Rebuilds the projects instead of incremental build"
echo " /clean Cleans the generated files"
echo " /build [debug-release-all] Specifies the build type, defaults to debug"
echo " /msvc-version [vc9|vc10] Specifies the msvc version and project files to use"
echo " /buildnumber [num] Specifies a build number to be set rather than commit hash"
)
if "%~0" == "/clean" (
call :CLEAN_BUILD
goto :eof
)
if "%~0" == "/builddeps" (
set DEPENDENCIESONLY=true
)
if "%~0" == "/allheightmaps" (
set ALLHEIGHTMAPS=true
)
if "%~0" == "/skipheightmaps" (
set SKIPHEIGHTMAPS=true
)
if "%~0" == "/nohaltonerror" (
set HALT_ON_ERROR=false
)
rem Check for /rebuild then set REBUILD
if "%~0" == "/rebuild" (
set REBUILD=rebuild
)
rem Check for /buildnumber x format and then set BUILDNUMBER
if "%~0" == "/buildnumber" (
set BUILDNUMBER=%~1
shift
)
rem Check for /build:x format and then set BUILD_TYPE
if "%~0" == "/build" (
set BUILD_TYPE=%~1
shift
)
rem Check for /msvc-version:x format and then set MSVC_VERSION
if "%~0" == "/msvc-version" (
rem Only set if it's an allowed version
if "%~1" == "vc9" (
set MSVC_VERSION=9
)
if "%~1" == "vc10" (
set MSVC_VERSION=10
)
shift
)
shift
goto :PROCESS_ARGUMENTS
rem --- End of PROCESS_ARGUMENTS -----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of CLEAN_BUILD ---------------------------------------------------
rem --- Cleans all output created by the build process, restoring the ---
rem --- project to it's original state like a fresh checkout. ---
:CLEAN_BUILD
echo Cleaning the build environment
if exist "bin" (
if exist "%PROJECT_BASE%bin/Debug" (
cd "%PROJECT_BASE%bin/Debug"
if exist *.exe del /Q *.exe
if exist *.ilk del /Q *.ilk
if exist *.pdb del /Q *.pdb
if exist *.map del /Q *.map
cd "%PROJECT_BASE%"
)
if exist "%PROJECT_BASE%bin/Release" (
cd "%PROJECT_BASE%bin/Release"
if exist *.exe del /Q *.exe
if exist *.ilk del /Q *.ilk
if exist *.pdb del /Q *.pdb
if exist *.map del /Q *.map
cd "%PROJECT_BASE%"
)
)
if exist "deps" rmdir /S /Q "deps"
if exist "build-aux" rmdir /S /Q "build-aux"
goto :eof
rem --- End of CLEAN_BUILD -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_ENVIRONMENT ---------------------------------------------
:BUILD_ENVIRONMENT
if %MSVC_VERSION%x == x (
if exist "%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0" (
set MSVC_VERSION=10
) else if exist "%PROGRAMFILES%\Microsoft Visual Studio 10.0" (
set MSVC_VERSION=10
) else if exist "%PROGRAMFILES(X86)%\Microsoft Visual Studio 9.0" (
set MSVC_VERSION=9
) else if exist "%PROGRAMFILES%\Microsoft Visual Studio 9.0" (
set MSVC_VERSION=9
)
)
call :BUILD_ENVIRONMENT_FOR_%MSVC_VERSION%
rem Set to devenv.exe for all versions of VS except express.
if exist "%VS_BASE_DIR%\Common7\IDE\devenv.com" (
set "DEVENV=%VS_BASE_DIR%\Common7\IDE\devenv.com"
) else (
set "DEVENV=%VS_BASE_DIR%\Common7\IDE\vcexpress.exe"
)
set "MSBUILD=%DOTNET_BASE_DIR%\msbuild.exe"
call "%VS_BASE_DIR%\VC\vcvarsall.bat" >NUL
set environment_built=yes
goto :eof
rem --- End of BUILD_ENVIRONMENT -----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_ENVIRONMENT_FOR_9 ---------------------------------------
:BUILD_ENVIRONMENT_FOR_9
set "VS_BASE_DIR=%PROGRAMFILES(X86)%\Microsoft Visual Studio 9.0"
if not exist "!VS_BASE_DIR!" (
set "VS_BASE_DIR=%PROGRAMFILES%\Microsoft Visual Studio 9.0"
if not exist "!VS_BASE_DIR!" (
rem TODO: Allow user to enter a path to their base visual Studio directory.
echo ***** Microsoft Visual Studio 9.0 required *****
exit
)
)
set "DOTNET_BASE_DIR=%WINDIR%\Microsoft.NET\Framework\v3.5"
if not exist "%DOTNET_BASE_DIR%" (
echo ***** Microsoft .NET Framework 3.5 required *****
exit
)
goto :eof
rem --- End of BUILD_ENVIRONMENT_FOR_9 -----------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_ENVIRONMENT_FOR_10 --------------------------------------
:BUILD_ENVIRONMENT_FOR_10
set "VS_BASE_DIR=%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0"
if not exist "!VS_BASE_DIR!" (
set "VS_BASE_DIR=%PROGRAMFILES%\Microsoft Visual Studio 10.0"
if not exist "!VS_BASE_DIR!" (
rem TODO: Allow user to enter a path to their base visual Studio directory.
echo ***** Microsoft Visual Studio 10.0 required *****
exit
)
)
set "DOTNET_BASE_DIR=%WINDIR%\Microsoft.NET\Framework\v4.0.30319"
if not exist "%DOTNET_BASE_DIR%" (
echo ***** Microsoft .NET Framework 4.0.30319 required *****
exit
)
goto :eof
rem --- End of BUILD_ENVIRONMENT_FOR_10 ----------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of DOWNLOAD_DATA_FILES -------------------------------------------
rem --- Downloads datafiles such as heightmaps needed to run the project. ---
:DOWNLOAD_DATA_FILES
echo ** Checking data file dependencies **
echo.
if not exist "data\heightmaps" (
mkdir data\heightmaps
)
call :DOWNLOAD_HEIGHTMAP tatooine
if %ALLHEIGHTMAPS% == true (
call :DOWNLOAD_HEIGHTMAP corellia
call :DOWNLOAD_HEIGHTMAP dantooine
call :DOWNLOAD_HEIGHTMAP dathomir
call :DOWNLOAD_HEIGHTMAP endor
call :DOWNLOAD_HEIGHTMAP lok
call :DOWNLOAD_HEIGHTMAP naboo
call :DOWNLOAD_HEIGHTMAP rori
rem call :DOWNLOAD_HEIGHTMAP taanab
call :DOWNLOAD_HEIGHTMAP talus
call :DOWNLOAD_HEIGHTMAP yavin4
)
echo ** Checking data file dependencies complete **
goto :eof
rem --- End of DOWNLOAD_DATA_FILES ---------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of DOWNLOAD_HEIGHTMAP --------------------------------------------
rem --- Downloads datafiles such as heightmaps needed to run the project. ---
:DOWNLOAD_HEIGHTMAP
if not exist "data\heightmaps\%1.hmpw" (
if not exist "data\heightmaps\%1.zip" (
echo ** Downloading Heightmap for %1 **
echo.
"tools\wget.exe" http://swganh.com/^^!^^!planets^^!^^!/%1.zip -O data\heightmaps\%1.zip
echo ** Downloading heightmap complete **
)
"tools\unzip.exe" data\heightmaps\%1.zip -d data\heightmaps >NUL
move "%PROJECT_BASE%data\heightmaps\%1.hmp" "%PROJECT_BASE%data\heightmaps\%1.hmpw"
if exist "data\heightmaps\%1.hmpw" (
del data\heightmaps\%1.zip
)
)
goto :eof
rem --- End of DOWNLOAD_HEIGHTMAP ----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_DEPENDENCIES --------------------------------------------
rem --- Builds all external dependencies needed by the project. ---
:BUILD_DEPENDENCIES
echo ** Building dependencies necessary for this project **
echo.
if not exist "deps" call :DOWNLOAD_DEPENDENCIES
if not exist "deps\VERSION" (
echo ** Dependencies out of date -- Updating now **
call :CLEAN_BUILD
call :DOWNLOAD_DEPENDENCIES
echo ** Dependencies updated **
)
set /p current_version=<"deps\VERSION"
if not %current_version% == %DEPENDENCIES_VERSION% (
echo ** Dependencies out of date -- Updating now **
rem Need to do a full rebuild after updating dependenceies
set REBUILD=rebuild
call :CLEAN_BUILD
call :DOWNLOAD_DEPENDENCIES
echo ** Dependencies updated **
)
if exist "deps\boost" call :BUILD_BOOST
if exist "deps\gtest" call :BUILD_GTEST
if exist "deps\gmock" call :BUILD_GMOCK
if exist "deps\lua" call :BUILD_LUA
if exist "deps\noise" call :BUILD_NOISE
if exist "deps\spatialindex" call :BUILD_SPATIALINDEX
if exist "deps\tolua++" call :BUILD_TOLUA
if exist "deps\zlib" call :BUILD_ZLIB
echo ** Building dependencies complete **
goto :eof
rem --- End of BUILD_DEPENDENCIES ----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of DOWNLOAD_DEPENDENCIES -----------------------------------------
rem --- Downloads the dependency package for the current version of the source -
:DOWNLOAD_DEPENDENCIES
if not exist "%DEPENDENCIES_FILE%" (
"tools\wget.exe" !DEPENDENCIES_URL! -O "%DEPENDENCIES_FILE%"
)
if exist "%DEPENDENCIES_FILE%" (
echo Extracting dependencies ...
"tools\unzip.exe" "%DEPENDENCIES_FILE%" >NUL
echo %DEPENDENCIES_VERSION% >"deps\VERSION"
echo Complete!
echo.
)
goto :eof
rem --- End of DOWNLOAD_DEPENDENCIES -------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_BOOST ---------------------------------------------------
rem --- Builds the boost library for use with this project. ---
:BUILD_BOOST
echo BUILDING: Boost - http://www.boost.org/
cd "%PROJECT_BASE%deps\boost"
rem Only build boost if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "stage\lib\libboost_*-mt-sgd.lib" (
echo Boost libraries already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "stage\lib\libboost_*-mt-s.lib" (
echo Boost libraries already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "stage\lib\libboost_*-mt-sgd.lib" (
if exist "stage\lib\libboost_*-mt-s.lib" (
echo Boost libraries already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
rem Build BJAM which is needed to build boost.
if not exist "tools\jam\src\bin.ntx86\bjam.exe" (
cd "tools\jam\src"
cmd /q /c build.bat >NUL 2>&1
cd "%PROJECT_BASE%deps\boost"
)
rem Build the boost libraries we need.
if "%BUILD_TYPE%" == "debug" (
cmd /c "tools\jam\src\bin.ntx86\bjam.exe" --toolset=msvc-%MSVC_VERSION%.0 --with-log --with-date_time --with-thread --with-regex --with-system variant=debug link=static runtime-link=static threading=multi >NUL
)
if "%BUILD_TYPE%" == "release" (
cmd /c "tools\jam\src\bin.ntx86\bjam.exe" --toolset=msvc-%MSVC_VERSION%.0 --with-log --with-date_time --with-thread --with-regex --with-system variant=release link=static runtime-link=static threading=multi >NUL
)
if "%BUILD_TYPE%" == "all" (
cmd /c "tools\jam\src\bin.ntx86\bjam.exe" --toolset=msvc-%MSVC_VERSION%.0 --with-log --with-date_time --with-thread --with-regex --with-system variant=debug,release link=static runtime-link=static threading=multi >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_BOOST -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_GTEST ---------------------------------------------------
rem --- Builds all googletest library used for unit testing. ---
:BUILD_GTEST
echo BUILDING: Google Test - http://code.google.com/p/googletest/
cd "%PROJECT_BASE%deps\gtest\msvc"
rem Only build gtest if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "debug\gtestd.lib" (
echo Google Test library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "release\gtest.lib" (
echo Google Test library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "debug\gtestd.lib" (
if exist "release\gtest.lib" (
echo Google Test library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
if exist "*.cache" del /S /Q "*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "gtest_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "gtest_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "gtest_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "gtest_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_GTEST -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_GMOCK ---------------------------------------------------
rem --- Builds all googlemock library used for unit testing. ---
:BUILD_GMOCK
echo BUILDING: Google Mock - http://code.google.com/p/googlemock/
cd "%PROJECT_BASE%deps\gmock\msvc"
rem Only build mock if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "debug\gmock.lib" (
echo Google Mock library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "release\gmock.lib" (
echo Google Mock library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "debug\gmock.lib" (
if exist "release\gmock.lib" (
echo Google Mock library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
if exist "%PROJECT_BASE%deps\gmock\msvc\*.cache" del /S /Q "%PROJECT_BASE%deps\gmock\msvc\*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "gmock_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "gmock_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "gmock_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "gmock_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_GMOCK -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_LUA -----------------------------------------------------
rem --- Builds the lua library for use with this project. ---
:BUILD_LUA
echo BUILDING: Lua - http://www.lua.org/
cd "%PROJECT_BASE%deps\lua"
rem Only build lua if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "lib\lua5.1d.lib" (
echo Lua already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "lib\lua5.1.lib" (
echo Lua already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "lib\lua5.1d.lib" (
if exist "lib\lua5.1.lib" (
echo Lua already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
rem Build the lua libraries we need.
if "%BUILD_TYPE%" == "debug" (
call :COMPILE_LUA debug >NUL
)
if "%BUILD_TYPE%" == "release" (
call :COMPILE_LUA release >NUL
)
if "%BUILD_TYPE%" == "all" (
call :COMPILE_LUA debug >NUL
call :COMPILE_LUA release >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_LUA -------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of COMPILE_LUA ---------------------------------------------------
rem --- Compiles the lua library. ---
:COMPILE_LUA
if "%1" == "debug" (
set buildcmd=cl /nologo /MTd /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE
set libname=lua5.1d.lib
)
if "%1" == "release" (
set buildcmd=cl /nologo /MT /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE
set libname=lua5.1.lib
)
if "%buildcmd%" == "" (
set buildcmd=cl /nologo /MTd /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE
set libname=lua5.1d.lib
)
rem Create the output directory if it does not yet exist.
if not exist "lib" (
mkdir "lib"
)
cd src
%buildcmd% *.c
del lua.obj luac.obj
lib /out:../lib/%libname% *.obj
del *.obj
cd ..
goto :eof
rem --- End of COMPILE_LUA -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_NOISE ---------------------------------------------------
rem --- Builds the noise library for use with this project. ---
:BUILD_NOISE
echo BUILDING: Noise - http://libnoise.sourceforge.net/
cd "%PROJECT_BASE%deps\noise"
rem Only build noise if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "win32\Debug\libnoise.lib" (
echo Noise already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "win32\Release\libnoise.lib" (
echo Noise already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "win32\Debug\libnoise.lib" (
if exist "win32\Release\libnoise.lib" (
echo Noise already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
rem Build the noise libraries we need.
rem VS likes to create these .cache files and then complain about them existing afterwards.
rem Removing it as it's not needed.
if exist "*.cache" del /S /Q "*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "libnoise_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "libnoise_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "libnoise_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "libnoise_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_NOISE -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_SPATIALINDEX --------------------------------------------
rem --- Builds the spatial index library for use with this project. ---
:BUILD_SPATIALINDEX
echo BUILDING: SpatialIndex - http://research.att.com/~marioh/spatialindex/
cd "%PROJECT_BASE%deps\spatialindex"
rem Only build spatial index if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "Debug\spatialIndex_d.lib" (
echo SpatialIndex already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "Release\spatialIndex.lib" (
echo SpatialIndex already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "Debug\spatialIndex_d.lib" (
if exist "Release\spatialIndex.lib" (
echo SpatialIndex already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
rem Build the spatial index libraries we need.
rem VS likes to create these .cache files and then complain about them existing afterwards.
rem Removing it as it's not needed.
if exist "*.cache" del /S /Q "*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "spatialindex_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "spatialindex_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "spatialindex_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "spatialindex_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_SPATIALINDEX ----------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_TOLUA ---------------------------------------------------
rem --- Builds the tolua++ library for use with this project. ---
:BUILD_TOLUA
echo BUILDING: tolua++ - http://www.codenix.com/~tolua/
cd "%PROJECT_BASE%deps\tolua++\win32\vc9"
rem Only build tolua++ if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "withLua51_Debug\toluapp.lib" (
echo tolua++ already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "withLua51_Release\toluapp.lib" (
echo tolua++ already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "withLua51_Debug\toluapp.lib" (
if exist "withLua51_Release\toluapp.lib" (
echo tolua++ already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
rem Build the tolua++ libraries we need.
rem VS likes to create these .cache files and then complain about them existing afterwards.
rem Removing it as it's not needed.
if exist "*.cache" del /S /Q "*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "toluapp_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=withLua51_Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "toluapp_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=withLua51_Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "toluapp_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=withLua51_Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "toluapp_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration=withLua51_Release,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
)
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_TOLUA -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_ZLIB ----------------------------------------------------
rem --- Builds the zlib library for use with this project. ---
:BUILD_ZLIB
echo BUILDING: zlib - http://www.zlib.net/
cd "%PROJECT_BASE%deps\zlib\projects\visualc6"
rem Only build zlib if it hasn't been built already.
if "%BUILD_TYPE%" == "debug" (
if exist "Win32_LIB_Debug\zlibd.lib" (
echo zlib library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "release" (
if exist "Win32_LIB_Release\zlib.lib" (
echo zlib library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if "%BUILD_TYPE%" == "all" (
if exist "Win32_LIB_Debug\zlibd.lib" (
if exist "Win32_LIB_Release\zlib.lib" (
echo zlib library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
)
rem Build the zlib library.
rem VS likes to create these .cache files and then complain about them existing afterwards.
rem Removing it as it's not needed.
if exist "zlib.sln.cache" del /S /Q "zlib.sln.cache" >NUL