Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
eigenpy
Commits
bc37f019
Unverified
Commit
bc37f019
authored
5 years ago
by
Justin Carpentier
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #102 from jcarpent/devel
Improve support of CMake >= 3.0.0
parents
2f0a5a3c
2ab0ac75
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+6
-1
6 additions, 1 deletion
CMakeLists.txt
cmake
+1
-1
1 addition, 1 deletion
cmake
with
7 additions
and
2 deletions
CMakeLists.txt
+
6
−
1
View file @
bc37f019
...
...
@@ -19,7 +19,12 @@ SET(CXX_DISABLE_WERROR True)
SET
(
CMAKE_VERBOSE_MAKEFILE True
)
INCLUDE
(
cmake/base.cmake
)
PROJECT
(
${
PROJECT_NAME
}
CXX
)
IF
(
CMAKE_VERSION VERSION_GREATER
"3.0.0"
)
CMAKE_POLICY
(
SET CMP0048 NEW
)
PROJECT
(
${
PROJECT_NAME
}
VERSION
${
PROJECT_VERSION_FULL
}
LANGUAGES CXX DESCRIPTION
${
PROJECT_DESCRIPTION
}
)
ELSE
(
CMAKE_VERSION VERSION_GREATER
"3.0.0"
)
PROJECT
(
${
PROJECT_NAME
}
CXX
)
ENDIF
(
CMAKE_VERSION VERSION_GREATER
"3.0.0"
)
INCLUDE
(
cmake/boost.cmake
)
INCLUDE
(
cmake/python.cmake
)
...
...
This diff is collapsed.
Click to expand it.
cmake
@
efa25a99
Compare
4c2f917c
...
efa25a99
Subproject commit
4c2f917c1bed8c1c3f019d335b2ef45b353aeb85
Subproject commit
efa25a9976b8a6fc9f51d26924d4238d0d4820b1
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment