Skip to content
GitLab
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
eigenpy
Commits
cfbd185f
Commit
cfbd185f
authored
Jan 08, 2018
by
jcarpent
Browse files
[CMake] Add SYSTEM info to INCLUDE_DIRECTORIES macro
This option avoid warnings comming from dependencies
parent
e8ef831f
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
cfbd185f
...
...
@@ -70,12 +70,12 @@ ADD_REQUIRED_DEPENDENCY("eigen3 >= 3.0.5")
SET
(
BOOST_COMPONENTS python
)
SEARCH_FOR_BOOST
()
# Add Boost path to include directories.
INCLUDE_DIRECTORIES
(
${
Boost_INCLUDE_DIRS
}
)
INCLUDE_DIRECTORIES
(
SYSTEM
${
Boost_INCLUDE_DIRS
}
)
FINDPYTHON
(
2.7 EXACT REQUIRED
)
INCLUDE_DIRECTORIES
(
${
PYTHON_INCLUDE_DIRS
}
)
INCLUDE_DIRECTORIES
(
SYSTEM
${
PYTHON_INCLUDE_DIRS
}
)
FIND_NUMPY
()
INCLUDE_DIRECTORIES
(
${
NUMPY_INCLUDE_DIRS
}
)
INCLUDE_DIRECTORIES
(
SYSTEM
${
NUMPY_INCLUDE_DIRS
}
)
# ----------------------------------------------------
# --- INCLUDE ----------------------------------------
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment