this repo has no description
0
fork

Configure Feed

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

Make appveyor package the right things.

+4 -2
+4 -2
.appveyor.yml
··· 41 41 before_build: 42 42 - echo Running cmake... 43 43 - cd c:\projects\SDL_gpu 44 - - cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=c:\projects\libs\SDL2 -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 44 + - mkdir build 45 + - cd build 46 + - cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=c:\projects\libs\SDL2 -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 .. 45 47 46 48 # scripts to run after build 47 49 after_build: 48 - - cd %P% 50 + - cd c:\projects\SDL_gpu\build 49 51 - 7z a c:\projects\SDL_gpu\SDL_gpu.zip * -tzip 50 52 - cd c:\projects\SDL_gpu 51 53