-
Notifications
You must be signed in to change notification settings - Fork 27
/
CompileAll.bat
50 lines (45 loc) · 943 Bytes
/
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
::goto Test
:Core
echo --- Compile Shaders
cd Core/Source/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 ..
cd ..
:Aid
echo --- Compile Aid
cd Aid/Source/
call npx tsc -p tsconfig.json
echo --- Generate Documentation
call npx typedoc
cd ..
cd ..
:UserInterface
echo --- Compile UserInterface
cd UserInterface/Source/
call npx tsc -p tsconfig.json
echo --- Generate Documentation
call npx typedoc
cd ..
cd ..
:Net
echo --- Compile Net
cd Net
call npx tsc -p ./tsconfig.message.json
echo module.exports = {FudgeNet: FudgeNet}; >> .\\Source\\Server\\Message.js
call AddExport .\\Source\\Server\\Message.d.ts
call npx tsc -p ./tsconfig.server.json
call npx tsc -p ./tsconfig.client.json
cd ..
:Test
echo --- Compile Test
cd Test
call npx tsc -p tsconfig.json
cd ..
pause