STYLE: fix documentation: the second short description discarded the first

one, but the first one was the correct one (i.e. the one which mentioned
that CheckC[XX]SourceRuns.cmake also tries to run the executable)

Alex
This commit is contained in:
Alexander Neundorf 2009-03-11 18:13:53 -04:00
parent 589b4265a6
commit 8d5b090188
4 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# - Check if the source code provided in the SOURCE argument compiles.
# - Check if the C source code provided in the SOURCE argument compiles.
# CHECK_C_SOURCE_COMPILES(SOURCE VAR)
# - macro which checks if the source code compiles
#
# SOURCE - source code to try to compile
# VAR - variable to store whether the source code compiled
#

View File

@ -1,6 +1,6 @@
# - Check if the source code provided in the SOURCE argument compiles and runs.
# - Check if the C source code provided in the SOURCE argument compiles and runs.
# CHECK_C_SOURCE_RUNS(SOURCE VAR)
# - macro which checks if the source code runs
#
# SOURCE - source code to try to compile
# VAR - variable to store the result, 1 for success, empty for failure
#

View File

@ -1,6 +1,6 @@
# - Check if the source code provided in the SOURCE argument compiles.
# - Check if the C++ source code provided in the SOURCE argument compiles.
# CHECK_CXX_SOURCE_COMPILES(SOURCE VAR)
# - macro which checks if the source code compiles
#
# SOURCE - source code to try to compile
# VAR - variable to store whether the source code compiled
#

View File

@ -1,6 +1,6 @@
# - Check if the source code provided in the SOURCE argument compiles and runs.
# - Check if the C++ source code provided in the SOURCE argument compiles and runs.
# CHECK_CXX_SOURCE_RUNS(SOURCE VAR)
# - macro which checks if the source code compiles
#
# SOURCE - source code to try to compile
# VAR - variable to store the result, 1 for success, empty for failure
#