views:

83

answers:

1

Hi,

i want to add a dynamic configuration path (generated from pkg-config) to my project. (this is basically for third-party dependencies like boost, so workspace includes is not appropiate, and filesystem include neither because that would be hardcoded and every developer would have to change that manually)

i am on project properties->c++ general->paths and symbols->includes tab->add...->add directory path->variables but i can only select among existing variables, how do i create a new variable dynamically generated from a command line program? like pkg-config --cflags boost-1.43?

this is easy to do in netbeans; you just add the pkg-config commandline with the backquotes in the build additional options and it resolves the build include and even in theory it should update the indexer (although truth be said, last time the indexer was correctly updating from pkg-config was on netbeans 6.8, it has been broken on 6.9 and 6.9.1)

i read this StackOverflow post but i still not sure how it helps this specific case

i read somewhere that you can use $(shell pkg-config...) to generate environment variables but not sure where to place the command

if there is no easy out of the box solution i'll try the script in this blog post

btw, i'm using eclipse helios -cdt 7

thanks!

+1  A: 

what i found so far is that you can do

project-> properties-> c++ build-> build variables

add a new variable of string type. Call it whatever you like:

UNITTEST_CPP_CXXFLAGS

then set as its value: $(shell pkg-config --cflags unittest-cpp)

the go to project properties-> c++ general -> path and symbols, includes. Select languages c++, otherwise it defaults to assembly source file. Click add. On the add directory path, click variables... (because we want to add the variable we have just created)

type the name of the variable (UNITTEST_CPP_CXXFLAGS), press enter and ok

when you rebuild the result of the shell command is replaced in a -I option (for the gnu gcc toolchain at least), in general pkg-config output might include one or more -I so this won't work. Lets go to c++ build->settings->tool settings->gcc c++ compiler->miscellaneous. In there, add ${UNITTEST_CPP_CXXFLAGS} to the other flags.

now the include will be added, but there is no hope of getting the indexer to browse those include!

lurscher