forked from asantee/ethanon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify_text_formats.bat
34 lines (23 loc) · 1.03 KB
/
verify_text_formats.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
@echo \
@echo -----------------------------------
@echo ETHANON TOOLKIT VERIFICATION SCRIPT
@echo -----------------------------------
@echo /
@IF NOT EXIST .\toolkit\Utilites\#bin#\Release\TextFormatVerifier.exe goto :errorMessage
@echo Source code and shaders...
@.\toolkit\Utilites\#bin#\Release\TextFormatVerifier.exe ASCII .\*.c;*.cpp;*.h;*.hpp;*.inl;*.cg angelscript;BoostSDK;CgSDK;DX9SDK
@echo Scripts...
@.\toolkit\Utilites\#bin#\Release\TextFormatVerifier.exe UTF-8 .\*.as;*.json angelscript;BoostSDK;CgSDK;DX9SDK
@echo Text resources (Unicode)...
@.\toolkit\Utilites\#bin#\Release\TextFormatVerifier.exe UTF-16 .\*.par;*.ent;*.esc Source;src
@echo Text resources (ASCII)...
@.\toolkit\Utilites\#bin#\Release\TextFormatVerifier.exe ASCII .\*.fnt;*.enml Source;src
@echo _
@echo [ Ethanon Toolkit verification complete. ]
@goto :theEnd
:errorMessage
@echo Verification tool not found.
@echo Please, build release of this solution first: .\toolkit\Utilites\Utilites.sln
@echo _
@echo [ Ethanon Toolkit verification failed. ]
:theEnd