Initial structure
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
@ECHO on
|
||||
|
||||
SET DeployLocation=bin\
|
||||
|
||||
ECHO Deploying resources to %DeployLocation%
|
||||
:: Asset folders
|
||||
MKLINK "%DeployLocation%\Models\" "assets\Models" /J
|
||||
MKLINK "%DeployLocation%\Textures\" "assets\Textures\" /J
|
||||
MKLINK "%DeployLocation%\Sounds\" "assets\Sounds\" /J
|
||||
:: Shaders
|
||||
MKLINK "%DeployLocation%\Shaders\" "src\dd\Core\Shaders\" /J
|
||||
:: Platform specific binaries
|
||||
IF "%~1"=="" GOTO :EOF
|
||||
ECHO Deploying %1 binaries to %DeployLocation%
|
||||
COPY "deps\bin\%1\x64\*.dll" "%DeployLocation%"
|
||||
:: Licenses
|
||||
::COPY "libs\assimp-3.1.1\LICENSE" "%ConfigPath%\Assimp License.txt"
|
||||
::COPY "libs\glew-1.11.0\LICENSE.txt" "%ConfigPath%\GLEW License.txt"
|
||||
::COPY "libs\glm-0.9.5.4\copying.txt" "%ConfigPath%\GLM License.txt"
|
||||
::COPY "libs\assimp-3.1.1\LICENSE" "%ConfigPath%\Assimp License.txt"
|
||||
Reference in New Issue
Block a user