mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 05:49:00 +08:00
accd1c870c
* [pangolin] Finx find dependency ffmpeg components * update baseline * [pangolin] Improve portfile.cmake * [pangolin] Drop support with osx * disable static build * Add system libraries to dependency * Update ports/pangolin/CONTROL Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
15 lines
472 B
Diff
15 lines
472 B
Diff
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
|
index 7f364a7..b6567a2 100644
|
|
--- a/src/CMakeLists.txt
|
|
+++ b/src/CMakeLists.txt
|
|
@@ -213,6 +213,9 @@ endif()
|
|
find_package(PythonLibs QUIET)
|
|
if(BUILD_PANGOLIN_GUI AND BUILD_PANGOLIN_VARS AND PYTHONLIBS_FOUND AND NOT _WIN_)
|
|
set(HAVE_PYTHON 1)
|
|
+ if (UNIX)
|
|
+ set(PYTHON_LIBRARY ${PYTHON_LIBRARY} dl)
|
|
+ endif()
|
|
list(APPEND HEADERS
|
|
${INCDIR}/console/ConsoleInterpreter.h
|
|
${INCDIR}/console/ConsoleView.h
|