diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-01 22:53:19 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-01 22:53:19 (GMT) |
commit | f7000fa7b9331f17c262e24150450cc46f0ed9f7 (patch) | |
tree | 56a3068355192a47a89ba66870f80803a5340e91 /Source/cmQTWrapUICommand.cxx | |
parent | 3e8f596c810a6321b6979421ad1934666c883788 (diff) | |
download | CMake-f7000fa7b9331f17c262e24150450cc46f0ed9f7.zip CMake-f7000fa7b9331f17c262e24150450cc46f0ed9f7.tar.gz CMake-f7000fa7b9331f17c262e24150450cc46f0ed9f7.tar.bz2 |
ENH: Make out of source work on Windows
Diffstat (limited to 'Source/cmQTWrapUICommand.cxx')
-rw-r--r-- | Source/cmQTWrapUICommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index 8ef8c18..3296053 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -82,7 +82,7 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& argsIn) m_Makefile->GetCurrentOutputDirectory(), "cxx",false); std::string origname; - if ( (*j)[0] == '/' ) + if ( (*j)[0] == '/' || (*j)[1] == ':' ) { origname = *j; } |