summaryrefslogtreecommitdiffstats
path: root/CMakeVariables.make.in
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 /CMakeVariables.make.in
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 'CMakeVariables.make.in')
-rw-r--r--CMakeVariables.make.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/CMakeVariables.make.in b/CMakeVariables.make.in
index ac81b12..1e8246b 100644
--- a/CMakeVariables.make.in
+++ b/CMakeVariables.make.in
@@ -3,15 +3,19 @@
# CMakeLocal.make.in should be in the directory where you run configure
# in, which need not be the source directory
+# The following LOCAL_* variables can be overridden in the CMakeLists.txt
+# files directly, inside the VERBATIM section. However, that will
+# not be used on the windows build, so keep it to unix things.
+#
# use this to add targets to the default all
# so they are built when make is run by default
-LOCAL_BUILD_TARGETS =
+# LOCAL_BUILD_TARGETS =
# use this flag to add -L and -l options to the link line
-LOCAL_LINK_FLAGS =
+# LOCAL_LINK_FLAGS =
# use this flag to add -I flags to the compile line
-LOCAL_INCLUDE_FLAGS =
+# LOCAL_INCLUDE_FLAGS =
# use this flag to add compiler options like -g -O, etc
# for the "C" compiler, for gcc these default to -g -O2