diff options
author | Brad King <brad.king@kitware.com> | 2008-01-18 00:58:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-18 00:58:01 (GMT) |
commit | 8d1d5500c8cb7ebabce73777c79c33074e679ab5 (patch) | |
tree | 27c37321fe8aff93398c9309462eb4f05b735778 /Source/cmLocalGenerator.h | |
parent | 7f589c9f23ee64ca0d36e81a02a70a87bc7fbbbe (diff) | |
download | CMake-8d1d5500c8cb7ebabce73777c79c33074e679ab5.zip CMake-8d1d5500c8cb7ebabce73777c79c33074e679ab5.tar.gz CMake-8d1d5500c8cb7ebabce73777c79c33074e679ab5.tar.bz2 |
ENH: Enable use of COMPILE_DEFINITIONS property for Fortran sources.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 721080e..25bedfc 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -227,7 +227,10 @@ public: /** Backwards-compatibility version of EscapeForShell. */ std::string EscapeForShellOldStyle(const char* str); - + + /** Escape the given string as an argument in a CMake script. */ + std::string EscapeForCMake(const char* str); + /** Return the directories into which object files will be put. * There maybe more than one for fat binary systems like OSX. */ |