https://github.com/RISCSoftware/cpacs_tigl_gen
Revision a27f3c7fb2a59a3111fbc492f53f91cd81c2d546 authored by RlanderRISCSW on 31 March 2020, 19:55:55 UTC, committed by RlanderRISCSW on 31 March 2020, 19:55:55 UTC
1 parent a7c1d7a
Raw File
Tip revision: a27f3c7fb2a59a3111fbc492f53f91cd81c2d546 authored by RlanderRISCSW on 31 March 2020, 19:55:55 UTC
adding TIGL_EXPORT to private functions from ITiglUIDRefObject for enabling generation of python wrappers
Tip revision: a27f3c7
.travis.yml
dist: trusty
language: cpp
sudo: required

addons: 
  apt: 
    packages: libboost-all-dev
    sources:
      - sourceline: 'ppa:mhier/libboost-latest'
    packages:
      - boost1.67

before_install:
  - curl http://download.opensuse.org/repositories/science:/dlr/xUbuntu_14.04/Release.key | sudo apt-key add -
  - echo "deb http://download.opensuse.org/repositories/science:/dlr/xUbuntu_14.04/ /" | sudo tee -a /etc/apt/sources.list
  - sudo apt-get update -qq
  - sudo apt-get install -y --force-yes libtixi3-dev

script:
  - mkdir build
  - cd build
  - cmake -DBoost_USE_STATIC_LIBS=OFF ..
  - make -j4
  - ./tests
  
back to top