Skip to content
Snippets Groups Projects
appveyor.yml 466 B
Newer Older
  • Learn to ignore specific revisions
  • image:
      - Visual Studio 2019
    clone_folder: c:\projects\source
    
    environment:
        PYTHON: "C:\\Python38-x64\\python.exe"
    
    build_script:
    - cmd: >-
        mkdir build
    
        cd build
    
        set PATH=%PATH%;C:\Users\appveyor\AppData\Roaming\Python\Python38\Scripts
    
        "%PYTHON%" -m pip install --user conan
    
        cmake c:\projects\source -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE:STRING=Release
    
        cmake --build . --config "Release"
    
    test_script:
    - cmd: ctest -C Debug