Hi everybody,

I created an empty form in QtCreator and ran the following commands afterwards:

qmake -spec macx-g++
make

everything builds ok but when I try to start the application (open Test.app) I get the following error: The application cannot be opened because the executable is missing.
However, the executable does exist.
When I start the executable directly (Test.app/Contents/MacOS/Test), the empty form appears.

Any ideas ?

Here's the content of my pro file:


#
#-------------------------------------------------
# Project created by QtCreator 2011-04-22T06:48:51
#
#-------------------------------------------------

QT += core gui

TARGET = Test
TEMPLATE = app


SOURCES += main.cpp\
mainwindow.cpp

HEADERS += mainwindow.h

FORMS += mainwindow.ui