diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-11-02 13:51:59 -0500 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-11-02 13:51:59 -0500 |
commit | 0a5b9db60b8411bb3b063e627ff317b34609562a (patch) | |
tree | f56e60fc91354a80caf71ee210cc6bcda8ebf282 /Modules/CheckVariableExists.cmake | |
parent | 35b529cc3e4dde27ec1c873eefb919c16c089dad (diff) | |
download | cmake-0a5b9db60b8411bb3b063e627ff317b34609562a.tar.gz |
DOC: better documentaiton
Diffstat (limited to 'Modules/CheckVariableExists.cmake')
-rw-r--r-- | Modules/CheckVariableExists.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Modules/CheckVariableExists.cmake b/Modules/CheckVariableExists.cmake index 14fdcd2ca3..ed1dfb306f 100644 --- a/Modules/CheckVariableExists.cmake +++ b/Modules/CheckVariableExists.cmake @@ -4,7 +4,12 @@ # VAR - the name of the variable # VARIABLE - variable to store the result # - +# If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the +# compile of the program likewise if CMAKE_REQUIRED_LIBRARIES is set then +# those libraries will be linked against the test program +# +# only for C variables +# MACRO(CHECK_VARIABLE_EXISTS VAR VARIABLE) IF("${VARIABLE}" MATCHES "^${VARIABLE}$") SET(MACRO_CHECK_VARIABLE_DEFINITIONS |