0

私は完全な c++ 初心者です。

Net Beans の下で Wx-Widgets を使用して Windows アプリケーションを構築しようとしています。

ここまでは順調ですね。私はすべてをインストールし、構成し、wx- widgetsをビルドし、それを新しいプロジェクトにアタッチしました。

今、私は最初のアプリを構築しようとしています:

#include <wx/string.h>

int main(int argc, char **argv)
{
  wxPuts(wxT("A wxWidgets console application"));
}

これは私が得るものです:

ここに画像の説明を入力

これが読めるかどうかわからないので、エラーを貼り付けます:

g++ `C:\WXWIN\wx-config --cxxflags`    -c -g -I../../../WXWIN/include `C:\WXWIN\wx-config --cxxflags` -MMD -MP -MF build/Debug/MinGW-Windows/main.o.d -o build/Debug/MinGW-Windows/main.o main.cpp
/bin/sh.exe: C:WXWINwx-config: command not found
/bin/sh.exe: C:WXWINwx-config: command not found
In file included from ../../../WXWIN/include/wx/defs.h:21:0,
                 from ../../../WXWIN/include/wx/string.h:25,
                 from main.cpp:1:
../../../WXWIN/include/wx/platform.h:196:22: fatal error: wx/setup.h: No such file or directory
compilation terminated.
make[2]: *** [build/Debug/MinGW-Windows/main.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2
make[2]: Leaving directory `/c/xampp/htdocs/WxWwigets_tutorial'
make[1]: Leaving directory `/c/xampp/htdocs/WxWwigets_tutorial'


BUILD FAILED (exit value 2, total time: 859ms)

リンカとコンパイラのすべてを注文どおりに設定したことに注意してください: http://wiki.wxwidgets.org/Compiling_using_Netbeans

4

1 に答える 1

1

エラーは目の前にあります:「コマンドが見つかりません」。を使用する場合は、バックスラッシュを含む DOS パスの代わりに/bin/sh、Unix スタイルのパスを使用する必要があります。C:/WXWIN/wx-config

Wiki の指示を理解せずにただ従うのではなく、使用している環境に慣れることを強くお勧めします。そうしないと、問題がすぐに解決することはありません。

于 2013-05-16T14:54:16.170 に答える