Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
eos
Commits
3a12cc43
Commit
3a12cc43
authored
Nov 17, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add appveyor.yml
parent
1a88df31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
appveyor.yml
appveyor.yml
+37
-0
No files found.
appveyor.yml
0 → 100644
View file @
3a12cc43
environment
:
home
:
C:\projects
cmake
:
C:\projects\cmake-3.4.1-win32-x86\bin\cmake.exe
version
:
'
{branch}-{build}'
os
:
Visual Studio
2015
install
:
# Get all submodules, since AppVeyor doesn't clone with '--recursive':
-
cmd
:
git submodule update --init --recursive
# inside the repository directory
# Get a recent CMake and our dependencies (Eigen, OpenCV, Boost):
-
cmd
:
cd %home%
-
ps
:
wget https://cmake.org/files/v3.4/cmake-3.4.1-win32-x86.zip -OutFile cmake.zip
-
cmd
:
7z x cmake.zip -o"C:\projects" -y > nul
# will extract to cmake-3.4.1-win32-x86\
-
cmd
:
'
%cmake%
--version'
# Get Eigen:
-
ps
:
wget http://bitbucket.org/eigen/eigen/get/3.3-beta1.zip -OutFile eigen.zip
-
cmd
:
7z x eigen.zip -o"C:\projects" -y > nul
# Get OpenCV (my pre-built binaries for 2.4.12):
-
ps
:
wget "https://drive.google.com/uc?export=download&id=0B2FFdHlMfJl_cW9PeUplRVFtUWs" -OutFile opencv-2.4.12-github-vc14-release-travis.rar
-
cmd
:
7z x opencv-2.4.12-github-vc14-release-travis.rar -o"C:\projects" -y > nul
# Using Boost 1.59.0 from AppVeyor (C:\Libraries\boost_1_59_0)
before_build
:
# We're still in %home%
-
cmd
:
mkdir build
-
cmd
:
cd build
-
cmd
:
'
%cmake%
-G
"Visual
Studio
14
Win64"
-DOpenCV_DIR=C:\projects\opencv
-DBOOST_ROOT=C:\Libraries\boost_1_59_0
-DBOOST_LIBRARYDIR=C:\Libraries\boost_1_59_0\lib64-msvc-14.0
-DEIGEN3_INCLUDE_DIR=C:\projects\eigen-eigen-ce5a455b34c0
-DCMAKE_INSTALL_PREFIX=..\install
-DBUILD_EXAMPLES=on
-DBUILD_UTILS=on
..\eos'
build
:
project
:
C:\projects\build\eos.sln
after_build
:
# We're still in %home%\build
-
cmd
:
'
%cmake%
--build
.
--target
INSTALL
--config
Release'
configuration
:
-
Release
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment