summaryrefslogtreecommitdiff
path: root/Tests/SystemInformation
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-01-17 10:28:07 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2003-01-17 10:28:07 -0500
commit0510292b9e4d1c7fc2a25710974fda166db0742b (patch)
treea5cbf9fd75e073627c780eed6511f1b4166bd70e /Tests/SystemInformation
parent211111a9755290ac5f52d38329630be782f3d87c (diff)
downloadcmake-0510292b9e4d1c7fc2a25710974fda166db0742b.tar.gz
add some more prints
Diffstat (limited to 'Tests/SystemInformation')
-rw-r--r--Tests/SystemInformation/DumpInformation.cxx2
-rw-r--r--Tests/SystemInformation/SystemInformation.in6
2 files changed, 7 insertions, 1 deletions
diff --git a/Tests/SystemInformation/DumpInformation.cxx b/Tests/SystemInformation/DumpInformation.cxx
index a6d5b2af8f..06201e7965 100644
--- a/Tests/SystemInformation/DumpInformation.cxx
+++ b/Tests/SystemInformation/DumpInformation.cxx
@@ -9,7 +9,7 @@ int main(int, char*[])
printf("Error, could not open file %s\n", CMAKE_DUMP_FILE);
return -1;
}
- printf("#Note less than will show up as { and greater than will be }\n");
+ printf("#CMake System Variables are:");
while(!feof(file))
{
int ch = fgetc(file);
diff --git a/Tests/SystemInformation/SystemInformation.in b/Tests/SystemInformation/SystemInformation.in
index 85cbcf1d33..5734b807ce 100644
--- a/Tests/SystemInformation/SystemInformation.in
+++ b/Tests/SystemInformation/SystemInformation.in
@@ -55,6 +55,12 @@ CMAKE_CXX_FLAGS_MINSIZEREL == "${CMAKE_CXX_FLAGS_MINSIZEREL}"
CMAKE_CXX_FLAGS_RELEASE == "${CMAKE_CXX_FLAGS_RELEASE}"
CMAKE_CXX_FLAGS_RELWITHDEBINFO == "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}"
+CMAKE_C_FLAGS == "${CMAKE_C_FLAGS}"
+CMAKE_C_FLAGS_DEBUG == "${CMAKE_C_FLAGS_DEBUG}"
+CMAKE_C_FLAGS_MINSIZEREL == "${CMAKE_C_FLAGS_MINSIZEREL}"
+CMAKE_C_FLAGS_RELEASE == "${CMAKE_C_FLAGS_RELEASE}"
+CMAKE_C_FLAGS_RELWITHDEBINFO == "${CMAKE_C_FLAGS_RELWITHDEBINFO}"
+
// build rules
CMAKE_CXX_CREATE_SHARED_LIBRARY == "${CMAKE_CXX_CREATE_SHARED_LIBRARY}"
CMAKE_CXX_CREATE_SHARED_MODULE == "${CMAKE_CXX_CREATE_SHARED_MODULE}"