-
Notifications
You must be signed in to change notification settings - Fork 9
/
build-lua-opengl-debug.cmd
50 lines (39 loc) · 1 KB
/
build-lua-opengl-debug.cmd
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
IF NOT EXIST __dist MKDIR __dist
IF "%VS150COMNTOOLS%" EQU "" set VS150COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\
echo on
rem Building Lua
cd thirdparty\lua-build\
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building GLEW
cd thirdparty\glew-build\
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building FreeGLUT
cd thirdparty\freeglut-build\
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building Pcre2
cd thirdparty\pcre2-build\
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building Array Adapter
cd experiments\ArrayBufferAdapter
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building RegExp Adapter
cd experiments\Pcre2Adapter
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building GLUT
cd experiments\WebGLAdapter
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building FreeImage
cd thirdparty\freeimage-build\
@call build.cmd win64 Debug
cd ..\..\..\..
rem Building FreeImage Adapter
cd experiments\FreeImageAdapter
@call build.cmd win64 Debug
cd ..\..\..\..