Skip to content

Commit

Permalink
No longer link with libpython.so to fix #18
Browse files Browse the repository at this point in the history
  • Loading branch information
MathMagique committed Sep 23, 2016
1 parent b6799c4 commit 99c9f74
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.4.1
=============

* Libraries no longer link `libpython.so` (linking is already done by
the Python interpreter)

Version 0.4.0
=============

Expand Down
1 change: 0 additions & 1 deletion cpp/turbodbc/Library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ add_dependencies(turbodbc
target_link_libraries(turbodbc
${Boost_LIBRARIES}
${Odbc_LIBRARIES}
${PYTHON_LIBRARIES}
cpp_odbc
)

Expand Down
5 changes: 3 additions & 2 deletions cpp/turbodbc/Test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ add_dependencies(turbodbc_test
)

target_link_libraries(turbodbc_test
turbodbc
cpp_odbc
turbodbc
cpp_odbc
${Odbc_LIBRARIES}
${PYTHON_LIBRARIES}
gmock_main
gtest
gmock
Expand Down
1 change: 0 additions & 1 deletion cpp/turbodbc_numpy/Library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ add_dependencies(turbodbc_numpy_support
target_link_libraries(turbodbc_numpy_support
${Boost_LIBRARIES}
${Odbc_LIBRARIES}
${PYTHON_LIBRARIES}
cpp_odbc
turbodbc
)
Expand Down
1 change: 0 additions & 1 deletion cpp/turbodbc_python/Library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ add_dependencies(turbodbc_python
target_link_libraries(turbodbc_python
${Boost_LIBRARIES}
${Odbc_LIBRARIES}
${PYTHON_LIBRARIES}
cpp_odbc
turbodbc
)
Expand Down

0 comments on commit 99c9f74

Please sign in to comment.