Douglas Hodson
2008-11-23 18:42:00 UTC
Hello... first time in this group. Bakefile is great, I'm trying to use
it for many things.
I setup a set of bakefiles to generate my Visual C++ 2005/2008 project
and solution files for several executables. It works.
As configured, the Release and Debug directories are created and
physically kept separate from the source / include files. And I've
specified that the target exe file be placed with the source code so
that, when executed, it has access to a number of input files it needs.
Directory structure looks like this:
root -> build -> bakefiles -> *.bkl
root -> build -> msvs2005 -> where 2005 project and solution files are
stored. Also where Release/Debug directories get created
root -> build -> msvc2008 -> same as above execept for 2008
root -> mainTest1 -> example1 that contains source, include and input
files + final target .exe once produced
root -> mainTest2 -> example2, etc
root -> mainTest3 -> example3, etc
This arrangement works great for both compilation and execution as long
as I don't use Visual C++ to execute it. Why? Because Visual C++'s
working directory is associated with "./" or the place where Release and
Debug information is kept, NOT the target path.
I can manually change it, but it seems that option is out of my control
as far as using bakefile. If I go this route, the user of my software
will have to change it... I don't like that.
Does this make sense? Any advice would be appreciated.
Doug
it for many things.
I setup a set of bakefiles to generate my Visual C++ 2005/2008 project
and solution files for several executables. It works.
As configured, the Release and Debug directories are created and
physically kept separate from the source / include files. And I've
specified that the target exe file be placed with the source code so
that, when executed, it has access to a number of input files it needs.
Directory structure looks like this:
root -> build -> bakefiles -> *.bkl
root -> build -> msvs2005 -> where 2005 project and solution files are
stored. Also where Release/Debug directories get created
root -> build -> msvc2008 -> same as above execept for 2008
root -> mainTest1 -> example1 that contains source, include and input
files + final target .exe once produced
root -> mainTest2 -> example2, etc
root -> mainTest3 -> example3, etc
This arrangement works great for both compilation and execution as long
as I don't use Visual C++ to execute it. Why? Because Visual C++'s
working directory is associated with "./" or the place where Release and
Debug information is kept, NOT the target path.
I can manually change it, but it seems that option is out of my control
as far as using bakefile. If I go this route, the user of my software
will have to change it... I don't like that.
Does this make sense? Any advice would be appreciated.
Doug