summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2000-09-18 13:19:38 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2000-09-18 13:19:38 (GMT)
commit283d3a0b734750a3bddfda9569894639571cf567 (patch)
treeac2ab120894feb883aeb5dce12a3e1af911c9bc4 /README
parent38f5ab8527a20caa7b7a2b867a1596ac05321e6b (diff)
downloadCMake-283d3a0b734750a3bddfda9569894639571cf567.zip
CMake-283d3a0b734750a3bddfda9569894639571cf567.tar.gz
CMake-283d3a0b734750a3bddfda9569894639571cf567.tar.bz2
ENH: added a config setup file for CMakeSetup. Cleaned up the names of the source and binary directories
Diffstat (limited to 'README')
-rw-r--r--README15
1 files changed, 15 insertions, 0 deletions
diff --git a/README b/README
index f0f38a4..86a0164 100644
--- a/README
+++ b/README
@@ -1,14 +1,29 @@
CMakeLists.txt -> File in each directory that contains classes, exe, etc
CMakeLists.txt contains the following:
+# build targets
WIN32_CLASSES =
UNIX_CLASSES =
ABSTRACT_CLASSES =
SUBDIRS =
EXECUTABLES =
+# make flags
+# make flags can use these varibles:
+# ${CMAKE_BINARY_DIR} The root of the build tree where the binaries are
+# ${CMAKE_SOURCE_ROOT} The root of the source tree where configure is
+INCLUDE_DIRECTORIES =
+LINK_DIRECTORIES =
+LINK_LIBRARIES = # use the same name as ME =
+WIN32_LIBRARIES =
+UNIX_LIBRARIES =
+
+# name of the library to build
ME =
+
+# add make commands
BEGIN MAKE VERBATIM
... # copy stuff into CMakeTargets.make directly
+LOCAL_BUILD_TARGETS = // These are done first before anything else
END MAKE VERBATIM
TEMPLATE_INSTANCE_DIR =