Hi,
I'm trying to compile a .exe with qmake command for my first QT application Hello.
My hello.pro is
Qt Code:
  1. TEMPLATE = app
  2. TARGET = hello
  3.  
  4. QT += core gui
  5.  
  6. HEADERS += hello.h
  7. SOURCES += main.cpp \
  8. hello.cpp
  9. FORMS += hello.ui
  10. RESOURCES +=
  11.  
  12. CONFIG += qt warn_on release
  13.  
  14. 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!