improve fwk and back cmds
parent
5841bfbff2
commit
2e643e69c3
4
MAKE.bat
4
MAKE.bat
|
@ -217,10 +217,13 @@ if "%1"=="fwk" (
|
||||||
if not exist "_fwk\tools" mkdir "_fwk\tools"
|
if not exist "_fwk\tools" mkdir "_fwk\tools"
|
||||||
if not exist "_fwk\tools\editor" mkdir "_fwk\tools\editor"
|
if not exist "_fwk\tools\editor" mkdir "_fwk\tools\editor"
|
||||||
if not exist "_fwk\engine" mkdir "_fwk\engine"
|
if not exist "_fwk\engine" mkdir "_fwk\engine"
|
||||||
|
if not exist "_fwk\engine\art" mkdir "_fwk\engine\art"
|
||||||
|
if not exist "_fwk\engine\art\shaders" mkdir "_fwk\engine\art\shaders"
|
||||||
if not exist "_fwk\engine\split" mkdir "_fwk\engine\split"
|
if not exist "_fwk\engine\split" mkdir "_fwk\engine\split"
|
||||||
setlocal enabledelayedexpansion
|
setlocal enabledelayedexpansion
|
||||||
xcopy /y "*" "_fwk"
|
xcopy /y "*" "_fwk"
|
||||||
xcopy /y "engine\split\3rd_*" "_fwk\engine\split"
|
xcopy /y "engine\split\3rd_*" "_fwk\engine\split"
|
||||||
|
xcopy /y "engine\art\shaders\*" "_fwk\engine\art\shaders"
|
||||||
xcopy /y "demos" "_fwk\demos"
|
xcopy /y "demos" "_fwk\demos"
|
||||||
xcopy /y/E "tools "_fwk\tools"
|
xcopy /y/E "tools "_fwk\tools"
|
||||||
for %%f in ("engine\split\v4k*") do (
|
for %%f in ("engine\split\v4k*") do (
|
||||||
|
@ -267,6 +270,7 @@ if "%1"=="back" (
|
||||||
|
|
||||||
xcopy /y "_fwk" "."
|
xcopy /y "_fwk" "."
|
||||||
xcopy /y "_fwk\engine\split\3rd_*" "engine\split"
|
xcopy /y "_fwk\engine\split\3rd_*" "engine\split"
|
||||||
|
xcopy /y "_fwk\engine\art\shaders\*" "engine\art\shaders"
|
||||||
xcopy /y "_fwk\demos" "demos"
|
xcopy /y "_fwk\demos" "demos"
|
||||||
xcopy /y/E "_fwk\tools "tools"
|
xcopy /y/E "_fwk\tools "tools"
|
||||||
for %%f in ("_fwk\engine\split\fwk*") do (
|
for %%f in ("_fwk\engine\split\fwk*") do (
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; this is where you specify and configure the V4K pipeline.
|
; this is where you specify and configure the FWK pipeline.
|
||||||
; tweak the pipeline and add new importers just by editing this file.
|
; tweak the pipeline and add new importers just by editing this file.
|
||||||
; there is no flow control in this script file: lines are parsed and evaluated, from top to bottom.
|
; there is no flow control in this script file: lines are parsed and evaluated, from top to bottom.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue