簡単な Qt プログラムを作成しています。実行するとmake
、次のようになります。
make -f Makefile.Debug
make[1]: Entering directory `/c/Users/Ola/Desktop/gotocell'
Makefile.Debug:59: *** missing separator. Stop.
make[1]: Leaving directory `/c/Users/Ola/Desktop/gotocell'
make: *** [debug] Error 2
これらのエラーはどういう意味ですか? そして、make
正しく進行した場合、どのような出力が期待できますか (つまり.exe
)?
ファイルの内容は次の.pro
とおりです。
編集が追加されましたtarget
######################################################################
# Automatically generated by qmake (2.01a) Sun Sep 9 08:26:50 2012
######################################################################
TEMPLATE = app
TARGET = gotocell.exe
DEPENDPATH += .
INCLUDEPATH += .
# Input
FORMS += gotocelldialog.ui
編集
でターゲットを変更すると.pro
、次のようになります。
c:\QtSDK\Desktop\Qt\4.8.1\msvc2008\bin\qmake.exe -o Makefile gotocell.pro
make -f Makefile.Debug
make[1]: Entering directory `/c/Users/Ola/Desktop/gotocell'
Makefile.Debug:59: *** missing separator. Stop.
make[1]: Leaving directory `/c/Users/Ola/Desktop/gotocell'
make: *** [debug] Error 2