File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ ENDIF(BUILD_UNIT_TESTS)
5656FINDPYTHON()
5757FIND_NUMPY()
5858
59+ IF (WIN32 )
60+ LINK_DIRECTORIES (${PYTHON_LIBRARY_DIRS} )
61+ ENDIF (WIN32 )
62+
5963# ----------------------------------------------------
6064# --- DEPENDENCIES -----------------------------------
6165# ----------------------------------------------------
Original file line number Diff line number Diff line change 66#define __eigenpy_version_hpp__
77
88#include " eigenpy/config.hpp"
9+ #include " eigenpy/eigenpy_export.h"
910
1011#include < string>
1112
@@ -17,7 +18,7 @@ namespace eigenpy
1718 // / the following standard:
1819 // / EIGENPY_MINOR_VERSION.EIGENPY_MINOR_VERSION.EIGENPY_PATCH_VERSION
1920 // /
20- std::string printVersion (const std::string & delimiter = " ." );
21+ std::string EIGENPY_EXPORT printVersion (const std::string & delimiter = " ." );
2122
2223 // /
2324 // / \brief Checks if the current version of EigenPy is at least the version provided
@@ -30,9 +31,9 @@ namespace eigenpy
3031 // / \returns true if the current version of EigenPy is greater than the version provided
3132 // / by the input arguments.
3233 // /
33- bool checkVersionAtLeast (unsigned int major_version,
34- unsigned int minor_version,
35- unsigned int patch_version);
34+ bool EIGENPY_EXPORT checkVersionAtLeast (unsigned int major_version,
35+ unsigned int minor_version,
36+ unsigned int patch_version);
3637}
3738
3839#endif // __eigenpy_version_hpp__
You can’t perform that action at this time.
0 commit comments