Hi,

EXPORT_LIBRARY_DEPENDENCIES() for my project produces this output:

SET(kdewin32_LIB_DEPENDS
"E:/Qt/qt-4.2.1/lib/QtCore4.lib;E:/Qt/qt-4.2.1/lib/QtCored4.lib;advapi32;shell32;ws2_32;")
SET(E:/Qt/qt-4.2.1/lib/QtCore4.lib_LINK_TYPE "optimized")
SET(E:/Qt/qt-4.2.1/lib/QtCored4.lib_LINK_TYPE "debug")

When I now want to use ${kdewin32_LIB_DEPENDS} I simply add it to
target_link_libraries:

target_link_libraries(myExecutable ${myLibs} ${kdewin32_LIB_DEPENDS})

But then I've the problem that myExecutable is linked agains QtCore4.lib
and QtCored4.lib instead using either QtCore4 or QtCored4 ...

Any ideas what's wrong here?

When I change the output to
SET(kdewin32_LIB_DEPENDS
optimized;"E:/Qt/qt-4.2.1/lib/QtCore4.lib;debug;E:/Qt/qt-4.2.1/lib/QtCored4.lib;advapi32;shell32;ws2_32;")

all works fine...

Thx,
Christian

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to