-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improve quiet mode * minor fixed in quiet mode * add slice algorithm * fixed vcglib old eigen * fixed eigenlib missing * fixed incompatible /MTd /MDd * correct the order of find_package in cmake * fixed a lot of bugs in feret and convexhull * fixed macos build * fixed #3 * major fixed with slice analysis * fixed point3d init * add new program to fix self-intersect mesh * fixed cmake and utils.h * fixed #7 * fixed travis buil;d * fixed travis build * fixef travis
- Loading branch information
Showing
6 changed files
with
1,830 additions
and
1,810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,39 @@ | ||
language: cpp | ||
os: linux | ||
dist: xenial | ||
branches: | ||
only: | ||
- master | ||
- dev | ||
jobs: | ||
include: | ||
- os: linux | ||
script: | ||
- mkdir build && cd build | ||
- cmake .. | ||
- make | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-7 | ||
env: COMPILER=g++-7 CPP_VER=11 | ||
- os: osx | ||
osx_image: xcode10 | ||
script: | ||
- mkdir build && cd build | ||
- cmake .. | ||
- make | ||
env: COMPILER=g++-7 CPP_VER=11 | ||
before_install: | ||
- brew update | ||
- brew install gcc@7 | ||
- os: windows | ||
script: | ||
- mkdir build && cd build | ||
- cmake .. | ||
- cmake --build . | ||
|
||
install: | ||
- if [[ "${COMPILER}" != "" ]]; then export CXX=${COMPILER}; fi | ||
- ${CXX} --version | ||
|
||
before_script: | ||
- mkdir -p -v build | ||
- cd build | ||
- cmake .. | ||
|
||
script: | ||
- cmake --build . | ||
|
||
notifications: | ||
email: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.