Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
1ff7b53d
Verified
Commit
1ff7b53d
authored
Oct 21, 2019
by
Justin Carpentier
Browse files
cmake: for future, set policy for version
parent
f0512a30
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
1ff7b53d
...
...
@@ -20,7 +20,12 @@ IF(NOT EXISTS "${CMAKE_SOURCE_DIR}/cmake/base.cmake")
ENDIF
()
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
)
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
)
...
...
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