diff options
author | Brad King <brad.king@kitware.com> | 2003-06-26 17:39:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-06-26 17:39:35 (GMT) |
commit | 7456fc360e97a71e001ea55f0f130a41c58642d2 (patch) | |
tree | 6f596aae0b7f1c8b079ffed9e2aff44cc36155a1 | |
parent | 9754503095b7150b5cd19009b8c166887c9fdfdb (diff) | |
download | CMake-7456fc360e97a71e001ea55f0f130a41c58642d2.zip CMake-7456fc360e97a71e001ea55f0f130a41c58642d2.tar.gz CMake-7456fc360e97a71e001ea55f0f130a41c58642d2.tar.bz2 |
ENH: Updated documentation to describe enabling of classes.
-rw-r--r-- | Source/kwsys/CMakeLists.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Source/kwsys/CMakeLists.txt b/Source/kwsys/CMakeLists.txt index 5f83623..7d60b40 100644 --- a/Source/kwsys/CMakeLists.txt +++ b/Source/kwsys/CMakeLists.txt @@ -17,14 +17,16 @@ # The Kitware System Library is intended to be included in other # projects. It is completely configurable in that the library's -# namespace can be configured and the components that are included -# selected invididually. +# namespace can be configured and the components that are included can +# be selected invididually. # Typical usage is to import the kwsys directory tree into a -# subdirectory under a parent project. The CMake listfile above this -# one configures the library as follows: +# subdirectory under a parent project and enable the classes that will +# be used. All classes are disabled by default. The CMake listfile +# above this one configures the library as follows: # -# SET(KWSYS_NAMESPACE fookwsys) +# SET(KWSYS_NAMESPACE foosys) +# SET(KWSYS_USE_Directory 1) # Enable Directory class. # SUBDIRS(kwsys) # # Optional settings are as follows: @@ -59,9 +61,9 @@ # Once configured, kwsys should be used as follows from C or C++ code: # -# #include <fookwsys/Directory.hxx> +# #include <foosys/Directory.hxx> # ... -# fookwsys::Directory directory; +# foosys::Directory directory; # #----------------------------------------------------------------------------- |