forked from qt-creator/qt-creator
CMake: Ensure qtcreatorcdbext is a shared library for all cases
qtcreatorcdbext.dll is being loaded by cdb.exe and needs to be a shared library always. Change-Id: I13582f295744d350907284ea02e08ce1e8055dbe Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -25,7 +25,7 @@ if (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
set(ArchSuffix 64)
|
||||
endif()
|
||||
|
||||
add_qtc_library(qtcreatorcdbext
|
||||
add_qtc_library(qtcreatorcdbext SHARED
|
||||
COMPONENT qtcreatorcdbext
|
||||
DEPENDS ${DbgEngLib}
|
||||
DESTINATION lib/qtcreatorcdbext${ArchSuffix}/
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
add_qtc_library(ProParser SHARED
|
||||
add_qtc_library(ProParser
|
||||
DEPENDS Qt5::Core Utils
|
||||
PUBLIC_DEFINES
|
||||
QMAKE_BUILTIN_PRFS QMAKE_OVERRIDE_PRFS
|
||||
|
||||
Reference in New Issue
Block a user