this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Added a first try at an appveyor build descriptor for Windows.

+49
+49
.appveyor.yml
··· 1 + environment: 2 + P: "c:/projects/libs" 3 + # ACCOUNT: 4 + # secure: 5 + 6 + branches: 7 + only: 8 + - master 9 + 10 + os: Visual Studio 2015 11 + 12 + init: 13 + - git config --global core.autocrlf input 14 + 15 + 16 + 17 + shallow_clone: true 18 + clone_folder: c:\projects\SDL_gpu 19 + 20 + platform: 21 + - x86 22 + - x64 23 + 24 + configuration: 25 + - Debug 26 + - Release 27 + 28 + build: 29 + project: INSTALL.vcxproj 30 + 31 + # scripts to run before build 32 + before_build: 33 + - echo Running cmake... 34 + - cd c:\projects\SDL_gpu 35 + - cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=%P% -DSDL_gpu_BUILD_DEMOS=ON -DSDL_gpu_BUILD_TESTS=ON -DSDL_gpu_BUILD_TOOLS=ON -DSDL_gpu_BUILD_SHARED=ON -DSDL_gpu_BUILD_STATIC=ON 36 + 37 + # scripts to run after build 38 + after_build: 39 + - cd %P% 40 + - 7z a c:\projects\SDL_gpu\SDL_gpu.zip * -tzip 41 + - cd c:\projects\SDL_gpu 42 + 43 + artifacts: 44 + - path: SDL_gpu.zip 45 + name: SDL_gpu.zip 46 + 47 + deploy_script: 48 + - cd c:\projects\SDL_gpu 49 + # - curl -T SDL_gpu.zip --user %ACCOUNT% https://www.dinomage.com/SDL_gpu.zip