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
f43e76e6
Commit
f43e76e6
authored
Dec 15, 2016
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set minimum CMake version to 3.1.3
Also swapped order of project() declaration and cmake_minimum_required()
parent
35070a24
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
CMakeLists.txt
CMakeLists.txt
+1
-1
examples/CMakeLists.txt
examples/CMakeLists.txt
+1
-1
matlab/CMakeLists.txt
matlab/CMakeLists.txt
+1
-1
python/CMakeLists.txt
python/CMakeLists.txt
+1
-1
utils/CMakeLists.txt
utils/CMakeLists.txt
+1
-1
No files found.
CMakeLists.txt
View file @
f43e76e6
cmake_minimum_required
(
VERSION
2.8.12
)
cmake_minimum_required
(
VERSION
3.1.3
)
project
(
eos
)
project
(
eos
)
set
(
eos_VERSION_MAJOR 0
)
set
(
eos_VERSION_MAJOR 0
)
set
(
eos_VERSION_MINOR 10
)
set
(
eos_VERSION_MINOR 10
)
...
...
examples/CMakeLists.txt
View file @
f43e76e6
cmake_minimum_required
(
VERSION 3.1.3
)
project
(
examples
)
project
(
examples
)
cmake_minimum_required
(
VERSION 2.8.10
)
# The examples need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
# The examples need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
...
...
matlab/CMakeLists.txt
View file @
f43e76e6
project
(
matlab-bindings
)
cmake_minimum_required
(
VERSION 3.7.0
)
cmake_minimum_required
(
VERSION 3.7.0
)
project
(
matlab-bindings
)
# If Matlab_ROOT_DIR is set, the Matlab at that location is used.
# If Matlab_ROOT_DIR is set, the Matlab at that location is used.
find_package
(
Matlab COMPONENTS MX_LIBRARY REQUIRED
)
find_package
(
Matlab COMPONENTS MX_LIBRARY REQUIRED
)
...
...
python/CMakeLists.txt
View file @
f43e76e6
cmake_minimum_required
(
VERSION 3.1.3
)
project
(
python-bindings
)
project
(
python-bindings
)
cmake_minimum_required
(
VERSION 2.8.12
)
# The python bindings may need a few additional dependencies (e.g. boost filesystem and OpenCV), which are
# The python bindings may need a few additional dependencies (e.g. boost filesystem and OpenCV), which are
# included below - at some point it should be checked if they are really needed.
# included below - at some point it should be checked if they are really needed.
...
...
utils/CMakeLists.txt
View file @
f43e76e6
cmake_minimum_required
(
VERSION 3.1.3
)
project
(
utils
)
project
(
utils
)
cmake_minimum_required
(
VERSION 2.8.12
)
# The utils need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
# The utils need a few additional dependencies (e.g. boost filesystem and OpenCV highgui):
...
...
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