用于运行SQLite的Eclipse(C ++版)的配置?

时间:2012-02-01 06:13:42

标签: linux eclipse ubuntu sqlite

我需要通过具有SQlite的eclipse运行C ++代码。我可以通过终端输入g ++ test.cpp -lsqlite3来运行它。但是如何通过Eclipse运行呢​​?如何在其配置中使用命令“-lsqlite3”?感谢

这是代码的乞讨

#include <sqlite3.h> #include <stdlib.h> #include <string.h> // g++ test.cpp -lsqlite3

1 个答案:

答案 0 :(得分:0)

我从未在eclipse中用C ++编写任何代码。但是我在eclipse中编写了很多java代码。您可以为这样的程序设置程序参数:
Menu -> Run -> Run Configurations -> select your application -> click "Arguments" tab on the right -> specify your arguments

如果不是eclipse中C ++开发的情况,请忽略我的回答。