57a67bf27e
This means for example, that consumers can use: target_link_libraries(foo ${QT_QTGUI_LIBRARIES}) instead of also needing to specify all 'public' dependencies: target_link_libraries(foo ${QT_QTGUI_LIBRARIES} ${QT_QTCORE_LIBRARIES} ) when using the IMPORTED targets. Also populate the IMPORTED_LINK_DEPENDENT_LIBRARIES property so CMake can help the linker find shared library dependencies.
17 lines
226 B
C++
17 lines
226 B
C++
|
|
#include <QApplication>
|
|
#include <QWidget>
|
|
|
|
#include <QString>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
QWidget w;
|
|
w.setWindowTitle(QString::fromLatin1("SomeTitle"));
|
|
w.show();
|
|
|
|
return 0;
|
|
}
|