* Build bin2res, winmm, comctl32, aclui, acledit

* Correct dependencies for build tool invocations
* Normalize paths in the generated makefile


svn path=/branches/xmlbuildsystem/; revision=13168
This commit is contained in:
Casper Hornstrup 2005-01-20 22:19:01 +00:00
parent a04e56cbf4
commit 49d3351175
31 changed files with 249 additions and 28 deletions

View file

@ -0,0 +1,9 @@
#include "test.h"
using std::string;
void FunctionTest::Run ()
{
string fixedupFilename = FixupTargetFilename ( "." SSEP "dir1" SSEP "dir2" SSEP ".." SSEP "filename.txt" );
ARE_EQUAL ( "$(ROS_INTERMEDIATE)dir1" SSEP "filename.txt", fixedupFilename );
}