mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
13 lines
480 B
Batchfile
13 lines
480 B
Batchfile
@ECHO OFF
|
|
|
|
REM Setting up dummy git helper
|
|
MKDIR ..\Vulkan-LoaderAndValidationLayers\external\glslang\External\spirv-tools
|
|
SET header="@ECHO off"
|
|
SET content="ECHO unused"
|
|
ECHO %header:"=% > git.bat
|
|
ECHO %content:"=% >> git.bat
|
|
COPY /Y git.bat ..\Vulkan-LoaderAndValidationLayers\external\glslang\External\spirv-tools\git.bat
|
|
|
|
REM Set up gitignore
|
|
SET ignored="*"
|
|
ECHO %ignored:"=% > ..\Vulkan-LoaderAndValidationLayers\external\glslang\External\spirv-tools\.gitignore |