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
appveyor.yml
image: Visual Studio 2017
environment:
  VCPKG_DEFAULT_TRIPLET: x64-windows

install:
  - call C:\\Miniconda35-x64\\Scripts\\activate.bat
  - conda install --yes -c dlr-sc tixi3
    
build_script:
- ps: |
    mkdir build
    pushd build
    cmake -DBOOST_ROOT=C:\Libraries\boost_1_67_0 -G "Visual Studio 15 2017 Win64" ..
    cmake --build . --config "Release"

test_script:
  - Release\tests
back to top