diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2000-09-18 13:19:38 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2000-09-18 13:19:38 (GMT) |
commit | 283d3a0b734750a3bddfda9569894639571cf567 (patch) | |
tree | ac2ab120894feb883aeb5dce12a3e1af911c9bc4 /README | |
parent | 38f5ab8527a20caa7b7a2b867a1596ac05321e6b (diff) | |
download | CMake-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-- | README | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 = |