Ok, here's what happened -- I ran your code and it compiled fine but no command line popped up, so I ran it again... now I get the same error every time with your code. I tried to run qmake, but it keeps saying unknown command.
This is frustrating 
Also, I just noticed our .pro files are different... not sure if that matters:
mine:
# -------------------------------------------------
# Project created by QtCreator 2010-02-24T13:23:24
# -------------------------------------------------
QT += network
QT -= gui
TARGET = jausCommandLine
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp \
jaus.cpp
HEADERS += jaus.h
# -------------------------------------------------
# Project created by QtCreator 2010-02-24T13:23:24
# -------------------------------------------------
QT += network
QT -= gui
TARGET = jausCommandLine
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp \
jaus.cpp
HEADERS += jaus.h
To copy to clipboard, switch view to plain text mode
yours:
QT += network
TARGET = jaus
TEMPLATE = app
SOURCES += main.cpp\
jaus.cpp
HEADERS += jaus.h
QT += network
TARGET = jaus
TEMPLATE = app
SOURCES += main.cpp\
jaus.cpp
HEADERS += jaus.h
To copy to clipboard, switch view to plain text mode
Bookmarks