forked from swganh/mmoserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_server.bat
More file actions
766 lines (558 loc) · 24.3 KB
/
build_server.bat
File metadata and controls
766 lines (558 loc) · 24.3 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
@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
%PROJECT_DRIVE%
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 not "%BUILDNUMBER%" == "false" (
if "%BUILD_TYPE%" == "debug" (
echo %BUILDNUMBER% >> build\bin\Debug\VERSION
)
if "%BUILD_TYPE%" == "release" (
echo %BUILDNUMBER% >> build\bin\Release\VERSION
)
if "%BUILD_TYPE%" == "all" (
echo %BUILDNUMBER% >> build\bin\Debug\VERSION
echo %BUILDNUMBER% >> build\bin\Release\VERSION
)
)
echo.
echo Server Successfully Built^^!
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.4.1
set DEPENDENCIES_FILE=mmoserver-deps-%DEPENDENCIES_VERSION%-win.7z
set DEPENDENCIES_URL=http://github.com/downloads/swganh/mmoserver/%DEPENDENCIES_FILE%
set "PROJECT_BASE=%~dp0"
set "PROJECT_DRIVE=%~d0"
set BUILD_TYPE=debug
set REBUILD=build
set MSVC_VERSION=10
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 " /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
)
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 "deps" rmdir /S /Q "deps"
if exist "build" rmdir /S /Q "build"
goto :eof
rem --- End of CLEAN_BUILD -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_ENVIRONMENT ---------------------------------------------
:BUILD_ENVIRONMENT
if not exist "%VS100COMNTOOLS%" (
set "VS100COMNTOOLS=%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0\Common7\Tools"
if not exist "!VS100COMNTOOLS!" (
set "VS100COMNTOOLS=%PROGRAMFILES%\Microsoft Visual Studio 10.0\Common7\Tools"
if not exist "!VS100COMNTOOLS!" (
rem TODO: Allow user to enter a path to their base visual Studio directory.
echo ***** Microsoft Visual Studio 10.0 required *****
exit /b 1
)
)
)
set "MSBUILD=%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
call "%VS100COMNTOOLS%\vsvars32.bat" >NUL
set environment_built=yes
goto :eof
rem --- End of BUILD_ENVIRONMENT -----------------------------------------------
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.hmpw.7z" (
echo ** Downloading Heightmap for %1 **
echo.
"tools\windows\wget.exe" --no-check-certificate http://github.com/downloads/anhstudios/swg-heightmaps/%1.hmpw.7z -O data\heightmaps\%1.hmpw.7z
echo ** Downloading heightmap complete **
)
"tools\windows\7z.exe" x -y -odata\heightmaps data\heightmaps\%1.hmpw.7z
)
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\glog" call :BUILD_GLOG
if exist "deps\gtest" call :BUILD_GTEST
if exist "deps\lua" call :BUILD_LUA
if exist "deps\mysql-connector-cpp" call :BUILD_MYSQLCONN
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\windows\wget.exe" --no-check-certificate !DEPENDENCIES_URL! -O "%DEPENDENCIES_FILE%"
)
if exist "%DEPENDENCIES_FILE%" (
echo Extracting dependencies ...
"tools\windows\7z.exe" x -y "%DEPENDENCIES_FILE%"
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 exist "stage\lib\libboost_*-mt-gd.lib" (
if exist "stage\lib\libboost_*-mt.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
cd "%PROJECT_BASE%deps\boost"
)
rem Build the boost libraries we need.
cmd /c "tools\jam\src\bin.ntx86\bjam.exe" --toolset=msvc-%MSVC_VERSION%.0 --with-date_time --with-thread --with-regex --with-system variant=debug,release link=static runtime-link=shared threading=multi define=_SCL_SECURE_NO_WARNINGS=0
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_BOOST -----------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_GLOG ----------------------------------------------------
rem --- Builds glog library used for logging. ---
:BUILD_GLOG
echo BUILDING: Google glog - http://code.google.com/p/google-glog/
cd "%PROJECT_BASE%deps\glog"
rem Only build gtest if it hasn't been built already.
if exist "debug\libglog.lib" (
if exist "release\libglog.lib" (
echo Google glog library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "google-glog.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "google-glog.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_GLOG ------------------------------------------------------
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 exist "gtest-md\Debug\gtest-mdd.lib" (
if exist "gtest-md\Release\gtest-md.lib" (
echo Google Test library already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "gtest-md.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "gtest-md.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_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 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.
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 /MDd /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE
set libname=lua5.1d.lib
)
if "%1" == "release" (
set buildcmd=cl /nologo /MD /O2 /W3 /c /D_CRT_SECURE_NO_DEPRECATE
set libname=lua5.1.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_MYSQLCONN -----------------------------------------------
rem --- Builds the mysql c++ connector library for use with this project. ---
:BUILD_MYSQLCONN
echo BUILDING: Mysql Connector/C++ - https://launchpad.net/mysql-connector-cpp
cd "%PROJECT_BASE%deps\mysql-connector-cpp"
rem Only build mysql++ if it hasn't been built already.
if exist "driver\Debug\mysqlcppconn.lib" (
if exist "driver\Release\mysqlcppconn.lib" (
echo Mysql Connector/C++ already built ... skipping
echo.
cd "%PROJECT_BASE%"
goto :eof
)
)
rem Build the mysql Connector/C++ library 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
"%MSBUILD%" "MYSQLCPPCONN.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "MYSQLCPPCONN.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_MYSQLCONN -------------------------------------------------
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 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
"%MSBUILD%" "libnoise.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "libnoise.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 exist "spatialindex-vc\Debug\spatialindex-vc.lib" (
if exist "spatialindex-vc\Release\spatialindex-vc.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
"%MSBUILD%" "spatialindex.sln" /t:build /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "spatialindex.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 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
"%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 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
"%MSBUILD%" "zlib_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration="LIB Debug",VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "zlib_vc%MSVC_VERSION%.sln" /t:build /p:Platform=Win32,Configuration="LIB Release",VCBuildAdditionalOptions="/useenv"
if exist "*.cache" del /S /Q "*.cache" >NUL
cd "%PROJECT_BASE%"
goto :eof
rem --- End of BUILD_ZLIB ------------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of BUILD_PROJECT -------------------------------------------------
rem --- Builds the actual project. ---
:BUILD_PROJECT
if not exist "%PROJECT_BASE%build" (
mkdir "%PROJECT_BASE%build"
)
cd "%PROJECT_BASE%build"
cmake -G "Visual Studio 10" -DCMAKE_INSTALL_PREFIX=%PROJECT_BASE% -DENABLE_TEST_REPORT=ON ..
if exist "*.cache" del /S /Q "*.cache" >NUL
if "%BUILD_TYPE%" == "debug" (
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "release" (
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
)
if "%BUILD_TYPE%" == "all" (
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Debug,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
"%MSBUILD%" "mmoserver.sln" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
"%MSBUILD%" "RUN_TESTS.vcxproj" /t:%REBUILD% /p:Platform=Win32,Configuration=Release,VCBuildAdditionalOptions="/useenv"
if errorlevel 1 exit /b 1
if exist "*.cache" del /S /Q "*.cache" >NUL
)
goto :eof
rem --- End of BUILD_PROJECT ---------------------------------------------------
rem ----------------------------------------------------------------------------
rem ----------------------------------------------------------------------------
rem --- Start of SLEEP ---------------------------------------------------------
rem --- Waits some seconds before returning. ---
:SLEEP
ping -n %1 -w 1 127.0.0.1>NUL
goto :eof
rem --- End of SLEEP -----------------------------------------------------------
rem ----------------------------------------------------------------------------
ENDLOCAL