aboutsummaryrefslogtreecommitdiff
path: root/attic/systeminfo/CMakeLists.txt
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2011-06-30 17:36:45 -0400
committerAllen Winter <allen.winter@kdab.com>2011-06-30 17:36:45 -0400
commitd2b2c90a06bf1f4a21df196430d1f95856900410 (patch)
treeaba9d2a48d7b2ac1e960e1b68218394524c7e6a8 /attic/systeminfo/CMakeLists.txt
parente15ffacc69242c89107afbfda6f8ece9f2b56633 (diff)
downloadextra-cmake-modules-d2b2c90a06bf1f4a21df196430d1f95856900410.tar.gz
extra-cmake-modules-d2b2c90a06bf1f4a21df196430d1f95856900410.tar.bz2
Move the modules, modules-test and systeminfo subdirs into 'attic'
Diffstat (limited to 'attic/systeminfo/CMakeLists.txt')
-rw-r--r--attic/systeminfo/CMakeLists.txt45
1 files changed, 45 insertions, 0 deletions
diff --git a/attic/systeminfo/CMakeLists.txt b/attic/systeminfo/CMakeLists.txt
new file mode 100644
index 00000000..77339d79
--- /dev/null
+++ b/attic/systeminfo/CMakeLists.txt
@@ -0,0 +1,45 @@
+macro(LOG line)
+ message(STATUS ${line})
+ file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/SystemInfo.txt "${line}\n")
+endmacro(LOG line)
+
+file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/SystemInfo.txt "CMake system information: \n")
+message(STATUS "-----------------------------------")
+message(STATUS "Printing system information: ")
+message(STATUS "-----------------------------------")
+
+log("C compiler: ${CMAKE_C_COMPILER}")
+log("CXX compiler: ${CMAKE_CXX_COMPILER}")
+log("C compiler is gcc: ${CMAKE_COMPILER_IS_GNUCC}")
+log("CXX compiler is g++: ${CMAKE_COMPILER_IS_GNUCXX}")
+log("System: ${CMAKE_SYSTEM}")
+log("System name: ${CMAKE_SYSTEM_NAME}")
+log("System version: ${CMAKE_SYSTEM_VERSION}")
+
+if(UNIX)
+ log("This is some kind of UNIX environment")
+endif(UNIX)
+
+if(WIN32)
+ log("This is Windows")
+endif(WIN32)
+
+if(APPLE)
+ log("This is an Apple")
+endif(APPLE)
+
+if(MINGW)
+ log("This is MinGW")
+endif(MINGW)
+
+if(CYGWIN)
+ log("This is Cygwin")
+endif(CYGWIN)
+
+if(BORLAND)
+ log("This is for a Borland compiler")
+endif(BORLAND)
+
+
+message(STATUS "-----------------------------------")
+