diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-10-01 13:50:11 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-10-01 13:50:11 (GMT) |
commit | ab409fec89127102bbeb25c238ea088bc892dd5e (patch) | |
tree | 9ca54edb9bff5b4d1df769339ebc9208580d1cf9 /Source/cmGlobalGenerator.h | |
parent | ecf312ccc87ae455267df27ad5cbe2c031e9ef18 (diff) | |
download | CMake-ab409fec89127102bbeb25c238ea088bc892dd5e.zip CMake-ab409fec89127102bbeb25c238ea088bc892dd5e.tar.gz CMake-ab409fec89127102bbeb25c238ea088bc892dd5e.tar.bz2 |
BUG: fix for 7738, allow for spaces in the package target path to CPackConfig files
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 01aeffd..90810ae 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -280,7 +280,8 @@ protected: void CreateDefaultGlobalTargets(cmTargets* targets); cmTarget CreateGlobalTarget(const char* name, const char* message, const cmCustomCommandLines* commandLines, - std::vector<std::string> depends, bool depends_on_all = false); + std::vector<std::string> depends, const char* workingDir, + bool depends_on_all = false); bool NeedSymbolicMark; bool UseLinkScript; |