Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pinocchio
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
pinocchio
Commits
92484232
Verified
Commit
92484232
authored
4 years ago
by
Francois Keith
Committed by
Justin Carpentier
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Win32] Correct link and symbol export for python build
parent
6b7db0ac
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bindings/python/CMakeLists.txt
+7
-1
7 additions, 1 deletion
bindings/python/CMakeLists.txt
bindings/python/parsers/python.hpp
+11
-0
11 additions, 0 deletions
bindings/python/parsers/python.hpp
with
18 additions
and
1 deletion
bindings/python/CMakeLists.txt
+
7
−
1
View file @
92484232
...
...
@@ -132,13 +132,19 @@ IF(BUILD_PYTHON_INTERFACE)
TARGET_LINK_LIBRARIES
(
${
PYWRAP
}
PUBLIC
${
PROJECT_NAME
}
)
TARGET_LINK_BOOST_PYTHON
(
${
PYWRAP
}
PUBLIC
)
IF
(
URDFDOM_FOUND
)
PKG_CONFIG_USE_DEPENDENCY
(
${
PYWRAP
}
urdfdom
)
ENDIF
(
URDFDOM_FOUND
)
IF
(
HPP_FCL_FOUND
)
PKG_CONFIG_USE_DEPENDENCY
(
${
PYWRAP
}
hpp-fcl
)
ENDIF
(
HPP_FCL_FOUND
)
IF
(
BUILD_WITH_HPP_FCL_PYTHON_BINDINGS
)
TARGET_COMPILE_DEFINITIONS
(
${
PYWRAP
}
PRIVATE -DPINOCCHIO_WITH_HPP_FCL_PYTHON_BINDINGS
)
ENDIF
(
BUILD_WITH_HPP_FCL_PYTHON_BINDINGS
)
IF
(
WIN32
)
TARGET_COMPILE_DEFINITIONS
(
${
PYWRAP
}
PRIVATE -DNOMINMAX
)
TARGET_LINK_LIBRARIES
(
${
PYWRAP
}
PUBLIC
${
PYTHON_LIBRARY
}
)
ENDIF
(
WIN32
)
IF
(
CPPAD_FOUND
)
PKG_CONFIG_USE_DEPENDENCY
(
${
PYWRAP
}
"cppad"
)
...
...
This diff is collapsed.
Click to expand it.
bindings/python/parsers/python.hpp
+
11
−
0
View file @
92484232
...
...
@@ -9,6 +9,16 @@
#include
<boost/python.hpp>
#if defined _WIN32
# ifdef pinocchio_pywrap_EXPORTS
# define PINOCCHIO_PYWRAP_DLLAPI __declspec(dllexport)
# else
# define PINOCCHIO_PYWRAP_DLLAPI __declspec(dllimport)
# endif // pinocchio_pywrap_EXPORTS
#else
# define PINOCCHIO_PYWRAP_DLLAPI
#endif // _WIN32
namespace
pinocchio
{
namespace
python
...
...
@@ -24,6 +34,7 @@ namespace pinocchio
/// \returns The model constructed by the Python script.
///
// TODO: look inside the context of Python and find an occurence of object Model
PINOCCHIO_PYWRAP_DLLAPI
Model
buildModel
(
const
std
::
string
&
filename
,
const
std
::
string
&
var_name
=
"model"
,
bool
verbose
=
false
);
...
...
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