From f7000fa7b9331f17c262e24150450cc46f0ed9f7 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 1 Aug 2003 18:53:19 -0400 Subject: [PATCH] ENH: Make out of source work on Windows --- Source/cmQTWrapUICommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index 8ef8c18f1..3296053b8 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -82,7 +82,7 @@ bool cmQTWrapUICommand::InitialPass(std::vector const& argsIn) m_Makefile->GetCurrentOutputDirectory(), "cxx",false); std::string origname; - if ( (*j)[0] == '/' ) + if ( (*j)[0] == '/' || (*j)[1] == ':' ) { origname = *j; }