diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-02-23 03:07:02 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-02-23 03:07:02 (GMT) |
commit | 007d2bbc50618a118fd18a203b97e6779ca58588 (patch) | |
tree | c6a259823705acf9840ce2be52c36f61116153d7 /Source/cmFindLibraryCommand.h | |
parent | 183273bea2b093043abb06845dffa7b902b6d273 (diff) | |
download | CMake-007d2bbc50618a118fd18a203b97e6779ca58588.zip CMake-007d2bbc50618a118fd18a203b97e6779ca58588.tar.gz CMake-007d2bbc50618a118fd18a203b97e6779ca58588.tar.bz2 |
ENH: Make more commands scriptable
Diffstat (limited to 'Source/cmFindLibraryCommand.h')
-rw-r--r-- | Source/cmFindLibraryCommand.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmFindLibraryCommand.h b/Source/cmFindLibraryCommand.h index 9a39985..dc1d219 100644 --- a/Source/cmFindLibraryCommand.h +++ b/Source/cmFindLibraryCommand.h @@ -51,6 +51,11 @@ public: virtual bool IsInherited() {return false;} /** + * This determines if the command is invoked when in script mode. + */ + virtual bool IsScriptable() { return true; } + + /** * The name of the command as specified in CMakeList.txt. */ virtual const char* GetName() {return "FIND_LIBRARY";} |