I have some test files I wish to move from my project folder to the epoc32 tree during the build process, so in my project's bld.inf have the following line:
PRJ_TESTEXPORTS
../testdata/testdata.ini c:/testdata/config/testdata.ini
When this is run it exports the file to:
/epoc32/data/c/testdata/config/testdata.ini
How can I get it to export it to
/epoc32/winscw/c/testdata/config/testdata.ini instead?
UPDATE:
I've found if I do 'abld test export' the file gets exported to
/epoc32/data/c/testdata/config/testdata.ini
but if I do 'able test build winscw udeb' the file gets exported to
/epoc32/data/c/testdata/config/testdata.ini
and
/epoc32/release/winscw/udeb/z/testdata/config/testdata.ini
Why is there a difference in behaviour between a pure export and an export done as part of a build?

Reply With Quote


