mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-08 12:30:20 +08:00
updated appveyor.yml
This commit is contained in:
+20
-8
@@ -15,15 +15,27 @@ install:
|
||||
- set QTDIR=C:\Qt\5.8\msvc2015_64
|
||||
- set PATH=%PATH%;%QTDIR%\bin
|
||||
# OpenCV
|
||||
- ps: wget "https://downloads.sourceforge.net/project/opencvlibrary/opencv-win/3.3.1/opencv-3.3.1-vc14.exe?r=&ts=1509722265&use_mirror=superb-dca2" -outfile opencv-3.3.1-vc14.exe
|
||||
- ps: msiexec /i opencv-3.3.1-vc14.exe /quiet /qn /norestart /log install.log
|
||||
# PCL
|
||||
- ps: wget https://github.com/PointCloudLibrary/pcl/releases/download/pcl-1.8.1/PCL-1.8.1-AllInOne-msvc2015-win64.exe -outfile PCL-1.8.1-AllInOne-msvc2015-win64.exe
|
||||
- ps: msiexec /i PCL-1.8.1-AllInOne-msvc2015-win64.exe /quiet /qn /norestart /log install.log
|
||||
- ps: wget 'http://kent.dl.sourceforge.net/project/opencvlibrary/opencv-win/3.3.1/opencv-3.3.1-vc14.exe' -outfile opencv-3.3.1-vc14.exe
|
||||
- ps: .\opencv-3.3.1-vc14.exe -o'C:\Program Files' -y
|
||||
# Openni2
|
||||
- ps: wget 'https://s3.amazonaws.com/com.occipital.openni/OpenNI-Windows-x64-2.2.0.33.zip' -outfile OpenNI-Windows-x64-2.2.0.33.zip
|
||||
- ps: Expand-Archive OpenNI-Windows-x64-2.2.0.33.zip -DestinationPath "."
|
||||
- ps: Start-Process -FilePath msiexec -ArgumentList '/i OpenNI-Windows-x64-2.2.msi /quiet /qn /norestart /log install.log' -Wait -Passthru
|
||||
# PCL (the zip file is the NSIS PCL-1.8.1-AllInOne-msvc2015-win64.exe installer but without embedded Openni2 installer that cannot be silent here)
|
||||
- ps: wget 'https://dl.dropboxusercontent.com/s/atf4r8kb1xyc1ls/PCL%201.8.1.exe?dl=0' -outfile PCL_1.8.1.exe
|
||||
- ps: .\PCL_1.8.1.exe -o'C:\Program Files' -y
|
||||
# zlib
|
||||
- ps: wget "https://docs.google.com/uc?authuser=0&id=0B46akLGdg-uaYm9MTTI4MUtUcmc&export=download" -outfile zlib-1.2.8-vc2010-x64.zip
|
||||
- cmd: 7z x zlib-1.2.8-vc2010-x64.zip -o"C:\Program Files" -y > nul
|
||||
- ps: wget 'https://docs.google.com/uc?authuser=0&id=0B46akLGdg-uaYm9MTTI4MUtUcmc&export=download' -outfile zlib-1.2.8-vc2010-x64.zip
|
||||
- ps: Expand-Archive zlib-1.2.8-vc2010-x64.zip -DestinationPath 'C:\Program Files\zlib'
|
||||
|
||||
before_build:
|
||||
- cd c:\projects\rtabmap\build
|
||||
- cmake -G "Visual Studio 14 2015 Win64" -DOpenCV_DIR=c:\opencv\build ..
|
||||
- cmake -G "Visual Studio 14 2015 Win64" -DOpenCV_DIR='C:\Program Files\opencv\build' -DPCL_DIR='C:\Program Files\PCL 1.8.1\cmake' ..
|
||||
|
||||
notifications:
|
||||
- provider: Email
|
||||
to:
|
||||
- matlabbe@email.com
|
||||
on_build_success: false
|
||||
on_build_failure: false
|
||||
on_build_status_changed: true
|
||||
Reference in New Issue
Block a user