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 a Travis-CI build descriptor.

+47
+47
.travis.yml
··· 1 + language: c 2 + 3 + os: 4 + - linux 5 + - osx 6 + 7 + dist: trusty 8 + 9 + compiler: 10 + - gcc 11 + - clang 12 + 13 + addons: 14 + apt: 15 + packages: 16 + - libsdl2-dev 17 + - cmake-data 18 + - cmake 19 + 20 + branches: 21 + only: 22 + - master 23 + 24 + 25 + matrix: 26 + include: 27 + - compiler: gcc 28 + env: BUILD=native 29 + - os: osx 30 + compiler: clang 31 + env: BUILD=native 32 + before_install: 33 + - brew update 34 + - brew install 35 + sdl2 36 + 37 + before_script: 38 + - if [[ "$BUILD" == "native" ]]; then 39 + $CC --version; 40 + cmake --version; 41 + sdl2-config --version; 42 + fi 43 + - mkdir build 44 + - cd build 45 + - cmake -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 .. 46 + 47 + script: make