0

我已经在我的 Mac 上成功构建并安装了Wt,现在我需要构建示例应用程序并运行它。我无法在我的机器上找到所需的库。在示例文档中,它说要执行以下操作:

g++ -o hello hello.cc -lwthttp -lwt
$ ./hello --docroot . --http-address 0.0.0.0 --http-port 9090

但我找不到 Include 和 libs 文件,因此我可以在 Netbeans 中添加。

4

1 回答 1

0

After building Wt run this command in your Wt build dir.

make install

I guess it is missing in their tutorial http://redmine.webtoolkit.eu/projects/wt/wiki/Installing_Wt_on_Mac_OS_X_Leopard

Also to run hello.C you should use 'lboost_signals' flag as said here: http://www.webtoolkit.eu/wt/src/hello

g++ -o hello hello.cpp -lwthttp -lwt -lboost_signals

于 2013-04-08T22:02:37.780 回答