diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-16 11:20:18 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-16 11:20:18 -0400 |
commit | 7b5a8762c6d5f7915db99e2344d169d14a4fda65 (patch) | |
tree | 4c5294710e7c720afde51e8e7170a39895d17c41 /Source/cmSetSourceFilesPropertiesCommand.h | |
parent | f7b1a90256a3e7d94cbb58b595eee5190e8958ba (diff) | |
download | cmake-7b5a8762c6d5f7915db99e2344d169d14a4fda65.tar.gz |
modified how source files store properties
Diffstat (limited to 'Source/cmSetSourceFilesPropertiesCommand.h')
-rw-r--r-- | Source/cmSetSourceFilesPropertiesCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmSetSourceFilesPropertiesCommand.h b/Source/cmSetSourceFilesPropertiesCommand.h index 15d4ed69b7..6a25582ee6 100644 --- a/Source/cmSetSourceFilesPropertiesCommand.h +++ b/Source/cmSetSourceFilesPropertiesCommand.h @@ -53,9 +53,9 @@ public: virtual const char* GetFullDocumentation() { return - "SET_SOURCE_FILES_PROPERTIES(file1 file2 .. filen [ABSTRACT|WRAP_EXCLUDE|GENERATED|COMPILE_FLAGS] [flags]) " - "Set properties on a file. The syntax for the command is to list all the files you want " - "to change, and then provide the values you want to set next."; + "SET_SOURCE_FILES_PROPERTIES(file1 file2 .. filen PROPERTIES prop1 value1 prop2 value2 ... prop2 valuen)" + "Set properties on a file. The syntax for the command is to list all the files you want " + "to change, and then provide the values you want to set next. Common boolean properties ABSTRACT, WRAP_EXCLUDE, GENERATED and COMPILE_FLAGS. The first three are boolean properties (use a 1 or 0, TRUE or FALSE) while the COMPILE_FLAGS accepts any string. You can make up your own properties as well."; } cmTypeMacro(cmSetSourceFilesPropertiesCommand, cmCommand); |