How to use Emacs and CEDET with SCons?

如何在不破坏语义和自动完成的情况下集成SCons和emacs + cedet?


I don't think there exists SCons integration for cedet. However, it is easy to set up an EDE project manually.

An lisp-snippet for a C++-project is given below.

(ede-cpp-root-project "myProject"
           :name "myProject"
           :file "my_project.txt"
           :include-path '("myproject/include")
           :system-include-path '("/usr/include/c++/4.5.1"
                                  "/usr/include/"))
链接地址: http://www.djcxy.com/p/7798.html

上一篇: Selenium 2:中断页面加载

下一篇: 如何在SCons中使用Emacs和CEDET?