30 lines
888 B
Batchfile
Executable File
30 lines
888 B
Batchfile
Executable File
@ECHO off
|
|
|
|
:: Set custom path to asset folder here
|
|
SET AssetSource=%UserProfile%\Google Drive\Fisk_ Litet Spelprojekt\Assets
|
|
|
|
ECHO Copying assets from %AssetSource%
|
|
RMDIR "assets\" /S /Q
|
|
XCOPY "%AssetSource%" "assets\" /E /Y /Q
|
|
CALL :deploy Debug
|
|
CALL :deploy Release
|
|
GOTO:eof
|
|
|
|
:deploy
|
|
ECHO Deploying %~1
|
|
SET ConfigPath=bin\%~1
|
|
:: Asset folders
|
|
MKLINK "%ConfigPath%\models\" "assets\models" /J
|
|
MKLINK "%ConfigPath%\textures\" "assets\textures\" /J
|
|
:: Shaders
|
|
MKLINK "%ConfigPath%\shaders\" "src\shaders\" /J
|
|
:: DLLs
|
|
MKLINK "%ConfigPath%\glfw3.dll" "libs\glfw-3.0.4\lib\%~1\glfw3.dll" /H
|
|
MKLINK "%ConfigPath%\OpenAL32.dll" "libs\openal-soft-1.15.1\lib\Win32\%~1\OpenAL32.dll" /H
|
|
IF %~1==Debug (
|
|
MKLINK "%ConfigPath%\glew32d.dll" "libs\glew-1.10.0\bin\%~1\Win32\glew32d.dll" /H
|
|
)
|
|
IF %~1==Release (
|
|
MKLINK "%ConfigPath%\glew32.dll" "libs\glew-1.10.0\bin\%~1\Win32\glew32.dll" /H
|
|
)
|
|
GOTO:eof |