Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Emacs and CEDET with SCons?

How to integrate SCons and emacs + cedet without breaking semantic and auto-complete?

like image 733
frp Avatar asked Jun 17 '11 17:06

frp


1 Answers

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/"))
like image 200
mirk Avatar answered Oct 11 '22 12:10

mirk