我需要通过具有SQlite的eclipse运行C ++代码。我可以通过终端输入g ++ test.cpp -lsqlite3来运行它。但是如何通过Eclipse运行呢?如何在其配置中使用命令“-lsqlite3”?感谢
这是代码的乞讨
#include <sqlite3.h> #include <stdlib.h> #include <string.h> // g++ test.cpp -lsqlite3
答案 0 :(得分:0)
我从未在eclipse中用C ++编写任何代码。但是我在eclipse中编写了很多java代码。您可以为这样的程序设置程序参数:
Menu -> Run -> Run Configurations -> select your application -> click "Arguments" tab on the right -> specify your arguments
。
如果不是eclipse中C ++开发的情况,请忽略我的回答。