Skip to content

Commit

Permalink
DL, not THREAD
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jun 19, 2017
1 parent 25fe592 commit 44a525c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/python/filters/CMakeLists.txt
Expand Up @@ -11,14 +11,14 @@ target_include_directories(${python_libname} PRIVATE
${PYTHON_INCLUDE_DIR} ${PDAL_JSONCPP_INCLUDE_DIR})

target_link_libraries(${python_libname} PUBLIC
${PYTHON_LIBRARY} ${CMAKE_THREAD_LIBS_INIT})
${PYTHON_LIBRARY} ${CMAKE_DL_LIBS})

if (WITH_TESTS)

PDAL_ADD_TEST(pdal_filters_python_test
FILES ../test/PythonFilterTest.cpp ${PLANG}
LINK_WITH ${programmable_libname} )
target_link_libraries(pdal_filters_python_test PUBLIC
${PYTHON_LIBRARY} ${CMAKE_THREAD_LIBS_INIT})
${PYTHON_LIBRARY} ${CMAKE_DL_LIBS})

endif()

0 comments on commit 44a525c

Please sign in to comment.