I am using Eclipse Keplero in C ++. I have a project that depends on other shared libraries.
To debug the application, I have to add manully all the dependency libraries, but this is very boring. So I thought I could update the PATH enviorment variable from "Enviorment" to "Run Configuration". I added the following variable: PATH:${PATH};${workspace_loc}\library\lib\x64;${BOOST_X64_NATIVE}
BOOST_X64_NATIVE is an os enviorment variable (windows 7). But I have the following message: Reference to undefined variable PATH .
Well, how can I properly configure the enviorment variables on eclipse so that I do not copy all the dependencies every time.
source share