mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2025-01-06 07:14:00 +00:00
9bc219ee14
About Shared Library (shared) and Module Library (module) type of cmake target INSTALL command has different behaviour for ARCHIVE LIBRARY RUNTIME depending on the platform
19 lines
500 B
Batchfile
19 lines
500 B
Batchfile
@echo off
|
|
|
|
SET COPYCMD=/Y
|
|
|
|
REM -- Backup config files
|
|
copy cfg\*.cfg cfg\*.bak
|
|
|
|
REM -- Copy tools
|
|
xcopy r:\code\nel\tools\3d\build_gamedata\*.bat . /E /D
|
|
xcopy r:\code\nel\tools\3d\build_gamedata\*.sh . /E /D
|
|
xcopy r:\code\nel\tools\3d\build_gamedata\*.cfg . /E /D
|
|
xcopy r:\code\nel\tools\3d\build_gamedata\*.ms . /E /D
|
|
xcopy r:\code\nel\tools\3d\build_gamedata\*.txt . /E /D
|
|
|
|
REM -- Restore config files
|
|
copy cfg\*.bak cfg\*.cfg
|
|
|
|
REM -- Delete backuped config files
|
|
del cfg\*.bak
|