We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05d4a99 commit 30f50b0Copy full SHA for 30f50b0
CMakeLists.txt
@@ -43,6 +43,12 @@ IF(BUILD_PYTHON_INTERFACE)
43
SEARCH_FOR_BOOST_PYTHON(REQUIRED)
44
ENDIF(BUILD_PYTHON_INTERFACE)
45
46
+IF(Boost_VERSION GREATER 107299 OR Boost_VERSION_MACRO GREATER 107299)
47
+ # Silence a warning about a deprecated use of boost bind by boost >= 1.73
48
+ # without dropping support for boost < 1.73
49
+ ADD_DEFINITIONS(-DBOOST_BIND_GLOBAL_PLACEHOLDERS)
50
+ENDIF()
51
+
52
# Main Library
53
SET(${PROJECT_NAME}_HEADERS
54
include/${CUSTOM_HEADER_DIR}/inverted-pendulum.hh
0 commit comments