Skip to content

Commit fb1bad0

Browse files
authored
Merge pull request #69 from wxmerkt/wxm-update-eigenpy-for-3rd-party-release
Sync CMake submodule, make Python non-system include directories, add package.xml
2 parents 960824e + 36ae3b1 commit fb1bad0

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ ADD_SUBDIRECTORY(python)
142142
ADD_SUBDIRECTORY(unittest)
143143

144144
PKG_CONFIG_APPEND_LIBS(${PROJECT_NAME})
145-
PKG_CONFIG_APPEND_CFLAGS("-isystem${PYTHON_INCLUDE_DIRS}")
146-
PKG_CONFIG_APPEND_CFLAGS("-isystem${NUMPY_INCLUDE_DIRS}")
145+
PKG_CONFIG_APPEND_CFLAGS("-I${PYTHON_INCLUDE_DIRS}")
146+
PKG_CONFIG_APPEND_CFLAGS("-I${NUMPY_INCLUDE_DIRS}")
147147
PKG_CONFIG_APPEND_BOOST_LIBS(${BOOST_COMPONENTS})
148148

149149
SETUP_PROJECT_FINALIZE()

cmake

package.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0"?>
2+
<package format="2">
3+
<name>eigenpy</name>
4+
<version>1.5.3</version>
5+
<description>Bindings between Numpy and Eigen using Boost.Python</description>
6+
<maintainer email="[email protected]">Justin Carpentier</maintainer>
7+
<maintainer email="[email protected]">Wolfgang Merkt</maintainer>
8+
<author>Justin Carpentier</author>
9+
<author>Nicolas Mansard</author>
10+
<license>BSD</license>
11+
12+
<url type="website">https://github.com/stack-of-tasks/eigenpy</url>
13+
14+
<depend>python</depend>
15+
<depend>python-numpy</depend>
16+
<depend>eigen</depend>
17+
<depend>boost</depend>
18+
19+
<buildtool_depend>cmake</buildtool_depend>
20+
<export>
21+
<build_type>cmake</build_type>
22+
</export>
23+
</package>

0 commit comments

Comments
 (0)