Hello,
I am using emacs 22.2.1 on Ubuntu with the latest version of cedet from CVS.
I am trying to configure a project for ACE&TAO but I'm having troubles
setting project's :spp-files to "${path_to_project}/ace/config.h".
Here is how my project is defined in my .emacs file:
(setq ace-60-project
(ede-cpp-root-project "ace+tao"
:file
"/mnt/space1/projects/extern/ace-6.0/ACE_wrappers/ChangeLog"
:include-path '("/protocols"
"/TAO"
"/"
)
:spp-files '("ace/config.h")
)
)
when I open emacs I get the error:
"Cannot find file ace/config.h in project. [2 times]"
(the same when I try specifying ":spp-files '("/ace/config.h")")
If I set the full absolute path to config.h:
(setq ace-60-project
(ede-cpp-root-project "ace+tao"
:file
"/mnt/space1/projects/extern/ace-6.0/ACE_wrappers/ChangeLog"
:include-path '("/protocols"
"/TAO"
"/"
)
:spp-files
'("/mnt/space1/projects/extern/ace-6.0/ACE_wrappers/ace/config.h")
)
)
I then get:
"Cannot find file
/mnt/space1/projects/extern/ace-6.0/ACE_wrappers/ace/config.h in
project. [2 times]"
What do you think is the problem with my configuration?
Best regards,
Bogdan Graur
|