diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-05 21:46:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-05 21:46:27 +0200 |
commit | 5c292cad0a5ab0b3b73929f302a37a2e6394ef81 (patch) | |
tree | 926dc5b45c5629b117899f23fe7d4687fefe58ab /cmake/opentrack-qt.cmake | |
parent | 8815732f37c5899dbe65d507c082c0c62250ab7d (diff) |
cmake: install shared libs only on win32
Issue: #867
Diffstat (limited to 'cmake/opentrack-qt.cmake')
-rw-r--r-- | cmake/opentrack-qt.cmake | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cmake/opentrack-qt.cmake b/cmake/opentrack-qt.cmake index fbea4d1c..30b3e7c7 100644 --- a/cmake/opentrack-qt.cmake +++ b/cmake/opentrack-qt.cmake @@ -8,12 +8,10 @@ find_package(Qt5 COMPONENTS SerialPort QUIET) set(MY_QT_LIBS ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Widgets_LIBRARIES} ${Qt5Network_LIBRARIES}) function(otr_install_qt_libs) - if(WIN32) - foreach(i Qt5::Core Qt5::Gui Qt5::Network Qt5::SerialPort Qt5::Widgets) - otr_install_lib(${i} ".") - endforeach() - otr_install_lib(Qt5::QWindowsIntegrationPlugin "./platforms") - endif() + foreach(i Qt5::Core Qt5::Gui Qt5::Network Qt5::SerialPort Qt5::Widgets) + otr_install_lib(${i} ".") + endforeach() + otr_install_lib(Qt5::QWindowsIntegrationPlugin "./platforms") endfunction() otr_install_qt_libs() |