mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-13 01:29:02 -05:00
4aa10cd6d6
With a similar commit in Qt 5, this will error at CMake time if an attempt is made to use target_link_libraries(foo Qt4::QtCore Qt5::Core)
9 lines
123 B
C++
9 lines
123 B
C++
|
|
#include <QCoreApplication>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
return app.exec();
|
|
}
|