From d12cee7e1cf4a61ba3e2e0748a7efa9e188d0194 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 1 Feb 2019 22:26:24 +0100 Subject: cmake/qt: try get Qt with correct CRT version Issue: #867 --- cmake/opentrack-qt.cmake | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cmake') diff --git a/cmake/opentrack-qt.cmake b/cmake/opentrack-qt.cmake index 0480b323..527f9fd7 100644 --- a/cmake/opentrack-qt.cmake +++ b/cmake/opentrack-qt.cmake @@ -20,7 +20,10 @@ endfunction() function(otr_install_qt_libs) if(WIN32) foreach(i Qt5::Core Qt5::Gui Qt5::Network Qt5::SerialPort Qt5::Widgets) - get_property(path TARGET "${i}" PROPERTY LOCATION) + get_property(path TARGET "${i}" PROPERTY "LOCATION_${CMAKE_BUILD_TYPE}") + if(path STREQUAL "") + get_property(path TARGET "${i}" PROPERTY IMPORTED_LOCATION) + endif() if("${path}" STREQUAL "") message(FATAL_ERROR "${i} ${path}") endif() -- cgit v1.2.3