use a custom directory for build in eclipse cdt c++ makefile project
hi i have a c++ makefile 开发者_StackOverflowproject in eclipse helios cdt.
my external makefile make the binary output files in projectdirectory/bin if i build project eclipse runs the makefile and there are no compilation problem but if i run it.. eclipse doesn't find the files..
some advice?
If you goto the "Run" menu and select "Debug Configurations" or "Run Configurations" (whichever concerns you), select "C/C++ Application", and then press the 'New' icon which is a little white page with a yellow plus icon in the top right.
On the right hand side you should see a text field "C/C++ Application:" with the buttons "Search Project..." and "Browse...". Select "Browse..." and navigate to the location of the build output executable.
This should be sufficient to get you up and running.
精彩评论