Hi,
I'm trying to compile a .exe with qmake command for my first QT application Hello.
My hello.pro is
TEMPLATE = app
TARGET = hello
QT += core gui
HEADERS += hello.h
SOURCES += main.cpp \
hello.cpp
FORMS += hello.ui
RESOURCES +=
CONFIG += qt warn_on release
qmake -project
TEMPLATE = app
TARGET = hello
QT += core gui
HEADERS += hello.h
SOURCES += main.cpp \
hello.cpp
FORMS += hello.ui
RESOURCES +=
CONFIG += qt warn_on release
qmake -project
To copy to clipboard, switch view to plain text mode
I get this error in the console:
c:\Users\ ... \workspaceC++\hello\hello.pro:13: Parse Error ('qmake -project')
Error processing project file: hello.pro
What can I do?
Thanks!
Bookmarks