Skip to content

Commit 40094ae

Browse files
author
Benjamin Chrétien
committed
Update for 3.1 release
1 parent e322800 commit 40094ae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ SETUP_PROJECT()
3535
# Search for dependencies.
3636
SET(BOOST_COMPONENTS filesystem system thread date_time)
3737
SEARCH_FOR_BOOST()
38-
ADD_REQUIRED_DEPENDENCY("roboptim-core >= 3.0")
38+
ADD_REQUIRED_DEPENDENCY("roboptim-core >= 3.1")
3939

4040
# Python 2 and 3 are supported
4141
FINDPYTHON()

src/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ SET(LOCAL_MODULE_DIR "${PROJECT_BINARY_DIR}/src")
77
ADD_LIBRARY(wrap MODULE wrap.cc)
88
PKG_CONFIG_USE_DEPENDENCY(wrap roboptim-core)
99
SET_TARGET_PROPERTIES(wrap PROPERTIES
10-
LIBRARY_OUTPUT_DIRECTORY ${LOCAL_MODULE_DIR}/roboptim/core)
10+
LIBRARY_OUTPUT_DIRECTORY ${LOCAL_MODULE_DIR}/roboptim/core
11+
SOVERSION 3 VERSION 3.1.0)
1112

1213
# Link against Boost.
1314
TARGET_LINK_LIBRARIES(wrap ${Boost_LIBRARIES})

0 commit comments

Comments
 (0)