From 5c292cad0a5ab0b3b73929f302a37a2e6394ef81 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 5 Apr 2019 21:46:27 +0200 Subject: cmake: install shared libs only on win32 Issue: #867 --- cmake/opentrack-boilerplate.cmake | 26 ++++++++++++++------------ cmake/opentrack-qt.cmake | 10 ++++------ 2 files changed, 18 insertions(+), 18 deletions(-) (limited to 'cmake') diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake index 5a4d7c71..d8b526c5 100644 --- a/cmake/opentrack-boilerplate.cmake +++ b/cmake/opentrack-boilerplate.cmake @@ -254,18 +254,20 @@ function(otr_pdb_for_dll varname path) endfunction() function(otr_install_lib target dest) - get_property(path TARGET "${target}" PROPERTY "LOCATION_${CMAKE_BUILD_TYPE}") - if(path STREQUAL "") - get_property(path TARGET "${target}" PROPERTY "LOCATION") - endif() - if(path STREQUAL "") - message(FATAL_ERROR "Can't find ${target}") - endif() - string(TOLOWER "${path}" path_) - if(NOT path_ MATCHES "\\.(a|lib)$") - if(MSVC AND opentrack_install-debug-info) - otr_pdb_for_dll(pdb-path "${opentrack-hier-debug}") + if(WIN32) + get_property(path TARGET "${target}" PROPERTY "LOCATION_${CMAKE_BUILD_TYPE}") + if(path STREQUAL "") + get_property(path TARGET "${target}" PROPERTY "LOCATION") + endif() + if(path STREQUAL "") + message(FATAL_ERROR "Can't find ${target}") + endif() + string(TOLOWER "${path}" path_) + if(NOT path_ MATCHES "\\.(a|lib)$") + if(MSVC AND opentrack_install-debug-info) + otr_pdb_for_dll(pdb-path "${opentrack-hier-debug}") + endif() + install(FILES "${path}" DESTINATION "${dest}") endif() - install(FILES "${path}" DESTINATION "${dest}") endif() endfunction() 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() -- cgit v1.2.3