summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorclaude-bot <[email protected]>2026-07-13 12:40:03 +0000
committerclaude-bot <[email protected]>2026-07-13 12:40:03 +0000
commit847962910f0bff071f3bf07c9abb87764fb6cac3 (patch)
treeddcd429e134c7fd5f72ddc97ced175de8d66fcd0 /.appveyor.yml
downloadlibrw-master.tar.gz
librw-master.zip
Import aap/librw @ masterHEADmaster
Snapshot for re3/reVC vendoring, per @lzcnt. Source: https://github.com/aap/librw (master).
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 0000000..f74fc38
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,32 @@
+image: Visual Studio 2017
+configuration: Release
+environment:
+ GLFW_BASE: glfw-3.3.4.bin.WIN64
+ GLFW_URL: https://github.com/glfw/glfw/releases/download/3.3.4/%GLFW_BASE%.zip
+ SDL2_BASE: SDL2-devel-2.0.14-VC
+ SDL2_URL: https://www.libsdl.org/release/%SDL2_BASE%.zip
+ SDL2_DIRAME: SDL2-2.0.14
+ PREMAKE5_URL: https://github.com/premake/premake-core/releases/download/v5.0.0-alpha16/premake-5.0.0-alpha16-windows.zip
+ matrix:
+ - PLATFORM: win-amd64-null
+ - PLATFORM: win-amd64-gl3
+ PREMAKE5_EXTRA_ARGS: --gfxlib=glfw
+ - PLATFORM: win-amd64-gl3
+ PREMAKE5_EXTRA_ARGS: --gfxlib=sdl2
+ - PLATFORM: win-amd64-d3d9
+
+install:
+ - appveyor DownloadFile %GLFW_URL% -FileName "%APPVEYOR_BUILD_FOLDER%/%GLFW_BASE%.zip"
+ - 7z x "%APPVEYOR_BUILD_FOLDER%/%GLFW_BASE%.zip"
+ - appveyor DownloadFile %SDL2_URL% -FileName "%APPVEYOR_BUILD_FOLDER%/%SDL2_BASE%.zip"
+ - 7z x "%APPVEYOR_BUILD_FOLDER%/%SDL2_BASE%.zip"
+ - appveyor DownloadFile %PREMAKE5_URL% -FileName "%APPVEYOR_BUILD_FOLDER%/premake5.zip"
+ - mkdir "%APPVEYOR_BUILD_FOLDER%/bin" && cd "%APPVEYOR_BUILD_FOLDER%/bin" && 7z x "%APPVEYOR_BUILD_FOLDER%/premake5.zip"
+ - set PATH=%APPVEYOR_BUILD_FOLDER%/bin;%PATH%
+before_build:
+ - mkdir "%APPVEYOR_BUILD_FOLDER%/build"
+ - cd "%APPVEYOR_BUILD_FOLDER%"
+ - premake5 vs2017 --glfwdir64=%APPVEYOR_BUILD_FOLDER%/%GLFW_BASE% --sdl2dir=%APPVEYOR_BUILD_FOLDER%/%SDL2_DIRAME% %PREMAKE5_EXTRA_ARGS%
+build:
+ project: c:\projects\librw\build\librw.sln
+ verbosity: minimal