mirror of
https://github.com/schnaader/precomp-cpp
synced 2026-08-23 00:23:04 -04:00
Add files for Travis and AppVeyor
This commit is contained in:
parent
7160fd82cb
commit
90a32d923d
2 changed files with 28 additions and 0 deletions
22
.travis.yml
Normal file
22
.travis.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
language: cpp
|
||||
sudo: required
|
||||
dist: trusty
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
matrix:
|
||||
exclude:
|
||||
- os: osx
|
||||
compiler: gcc
|
||||
|
||||
before_install:
|
||||
- echo $LANG
|
||||
- echo $LC_ALL
|
||||
|
||||
script:
|
||||
- if [ $TRAVIS_OS_NAME == linux ]; then cmake -Bbuild -H. -G"Unix Makefiles"; cd build; make; fi
|
||||
- if [ $TRAVIS_OS_NAME == osx ]; then cmake -Bbuild -H. -G"Unix Makefiles"; cd build; make; fi
|
||||
6
appveyor.yml
Normal file
6
appveyor.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
version: 1.0.{build}
|
||||
build_script:
|
||||
- cmd: >-
|
||||
cmake -Bbuild -H. -G"Visual Studio 14 2015 Win64"
|
||||
|
||||
msbuild build\fairytale.sln
|
||||
Loading…
Add table
Add a link
Reference in a new issue