compiling and linking

This commit is contained in:
ExMix 2013-12-26 19:00:28 +03:00 committed by Alex Zolotarev
parent 7146b477af
commit 415de9c7ad
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ include($$ROOT_DIR/common.pri)
TARGET = DrapeHead
TEMPLATE = app
CONFIG += warn_on
QT *= core widgets gui
QT *= core gui widgets
win32* {
LIBS += -lopengl32 -lws2_32 -lshell32 -liphlpapi

View file

@ -1,5 +1,5 @@
#include "mainwindow.hpp"
#include <QApplication>
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{

View file

@ -1,6 +1,6 @@
#pragma once
#include <QMainWindow>
#include <QtWidgets/QMainWindow>
class MainWindow : public QMainWindow
{