From a9476c7a5a96081c8672e71cb00df8ab2a038d79 Mon Sep 17 00:00:00 2001 From: Hirek Date: Fri, 5 Sep 2025 22:03:17 +0200 Subject: [PATCH] Add complete shader copy --- appveyor.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 5aed1240..cff87804 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -21,12 +21,19 @@ install: before_build: - cmd: | if not exist build mkdir build - cd build + # cd build cmake .. -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=%CONFIG% build_script: - cmd: | cmake --build . --config %CONFIG% --parallel + cd .. + +after_build: + - cmd: | + echo Copying shaders... + if not exist build\bin\%CONFIG%\shaders mkdir build\bin\%CONFIG%\shaders + xcopy /E /Y shaders build\bin\%CONFIG%\shaders\ artifacts: - path: build\bin\%CONFIG%\*.exe