appveyor test 2 (added appveyor badge)
This commit is contained in:
parent
89cf7f17db
commit
e2bab5b3e3
|
@ -1,81 +1,20 @@
|
||||||
# Notes:
|
|
||||||
# - Minimal appveyor.yml file is an empty file. All sections are optional.
|
|
||||||
# - Indent each level of configuration with 2 spaces. Do not use tabs!
|
|
||||||
# - All section names are case-sensitive.
|
|
||||||
# - Section names should be unique on each level.
|
|
||||||
|
|
||||||
#---------------------------------#
|
|
||||||
# general configuration #
|
|
||||||
#---------------------------------#
|
|
||||||
|
|
||||||
# version format
|
|
||||||
version: 1.0.{build}
|
|
||||||
|
|
||||||
# you can use {branch} name in version format too
|
|
||||||
# version: 1.0.{build}-{branch}
|
|
||||||
|
|
||||||
# branches to build
|
|
||||||
branches:
|
branches:
|
||||||
# whitelist
|
|
||||||
only:
|
only:
|
||||||
- devel
|
- devel
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------#
|
|
||||||
# environment configuration #
|
|
||||||
#---------------------------------#
|
|
||||||
|
|
||||||
# Build worker image (VM template)
|
# Build worker image (VM template)
|
||||||
image: Visual Studio 2015
|
image: Visual Studio 2015
|
||||||
|
|
||||||
# clone directory
|
# clone directory
|
||||||
clone_folder: c:\projects\vcglib
|
clone_folder: c:\projects\vcglib
|
||||||
|
|
||||||
# fetch repository as zip archive
|
|
||||||
shallow_clone: true # default is "false"
|
|
||||||
|
|
||||||
# set clone depth
|
|
||||||
clone_depth: 5 # clone entire repository history if not defined
|
|
||||||
|
|
||||||
# scripts that run after cloning repository
|
|
||||||
install:
|
|
||||||
# by default, all script lines are interpreted as batch
|
|
||||||
- echo This is batch
|
|
||||||
# to run script as a PowerShell command prepend it with ps:
|
|
||||||
- ps: Write-Host 'This is PowerShell'
|
|
||||||
# batch commands start from cmd:
|
|
||||||
- cmd: echo This is batch again
|
|
||||||
- cmd: set MY_VAR=12345
|
|
||||||
|
|
||||||
#---------------------------------#
|
|
||||||
# build configuration #
|
|
||||||
#---------------------------------#
|
|
||||||
|
|
||||||
# build Configuration, i.e. Debug, Release, etc.
|
# build Configuration, i.e. Debug, Release, etc.
|
||||||
configuration: Release
|
configuration: Release
|
||||||
|
|
||||||
# to add several configurations to build matrix:
|
|
||||||
#configuration:
|
|
||||||
# - Debug
|
|
||||||
# - Release
|
|
||||||
|
|
||||||
build:
|
|
||||||
parallel: true # enable MSBuild parallel builds
|
|
||||||
|
|
||||||
# MSBuild verbosity level
|
|
||||||
verbosity: detailed
|
|
||||||
|
|
||||||
|
|
||||||
# scripts to run before build
|
# scripts to run before build
|
||||||
before_build:
|
before_build:
|
||||||
ps: cd apps/sample
|
ps: cd apps/sample/tridecimator
|
||||||
|
|
||||||
# scripts to run after build
|
|
||||||
after_build:
|
|
||||||
|
|
||||||
# to run your custom scripts instead of automatic MSBuild
|
# to run your custom scripts instead of automatic MSBuild
|
||||||
build_script:
|
build_script:
|
||||||
ps: qmake
|
ps: qmake
|
||||||
ps: msbuild
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
The **_Visualization and Computer Graphics Library_** (VCGlib for short) is a open source, portable, C++, templated, no dependency, library for manipulation, processing, cleaning, simplifying triangle meshes.
|
The **_Visualization and Computer Graphics Library_** (VCGlib for short) is a open source, portable, C++, templated, no dependency, library for manipulation, processing, cleaning, simplifying triangle meshes.
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/cnr-isti-vclab/vcglib.svg?branch=devel)](https://travis-ci.org/cnr-isti-vclab/vcglib)
|
[![Build Status](https://travis-ci.org/cnr-isti-vclab/vcglib.svg?branch=devel)](https://travis-ci.org/cnr-isti-vclab/vcglib)
|
||||||
|
[![Build status](https://ci.appveyor.com/api/projects/status/7k27s4k4xjmeowoe/branch/devel?svg=true)](https://ci.appveyor.com/project/cignoni/vcglib/branch/devel)
|
||||||
The library, composed by more than 100k lines of code, is released under the GPL license, and it is the base of most of the software tools of the [Visual Computing Lab](http://vcg.isti.cnr.it) of the Italian National Research Council Institute ISTI , like MeshLab, metro and many others.
|
The library, composed by more than 100k lines of code, is released under the GPL license, and it is the base of most of the software tools of the [Visual Computing Lab](http://vcg.isti.cnr.it) of the Italian National Research Council Institute ISTI , like MeshLab, metro and many others.
|
||||||
|
|
||||||
The VCG library is tailored to mostly manage triangular meshes: The library is fairly large and offers many state of the art functionalities for processing meshes, like:
|
The VCG library is tailored to mostly manage triangular meshes: The library is fairly large and offers many state of the art functionalities for processing meshes, like:
|
||||||
|
|
Loading…
Reference in New Issue