-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCompileAll.bat
61 lines (55 loc) · 1.12 KB
/
CompileAll.bat
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
::goto Test
:Core
echo --- Compile Shaders
cd Source/Core/Shader/
call node MergeShaderSources.mjs
cd ..
echo --- Compile Core
call npx tsc -p tsconfig.json
echo --- Compile Core Minimal
call npx tsc -p tsconfig-minimal.json
echo --- Generate Documentation
call npx typedoc
cd ../..
:Aid
echo --- Compile Aid
cd Source/Aid/
call npx tsc -p tsconfig.json
echo --- Generate Documentation
call npx typedoc
cd ../..
:UserInterface
echo --- Compile UserInterface
cd Source/UserInterface/
call npx tsc -p tsconfig.json
echo --- Generate Documentation
call npx typedoc
cd ../..
:Net
echo --- Compile Net
cd Source/Net
call npx tsc -p tsconfig.json
echo module.exports = {FudgeNet: FudgeNet}; >> .\\Server\\Message.js
call AddExport .\\Server\\Message.d.ts
cd Server
call npx tsc -p tsconfig.json
cd ..
cd Client
call npx tsc -p tsconfig.json
cd ..
echo --- Generate Documentation
call npx typedoc --tsconfig tsconfig.typedoc.json
cd ../..
:Editor
echo --- Compile Editor
cd Editor/Source
call npx tsc -p tsconfig.json
cd Fudge
call npx tsc -p tsconfig.json
cd ../../..
:Test
echo --- Compile Test
cd Test
call npx tsc -p tsconfig.json
cd ..
pause