]> gitweb.hhaalo.de Git - discspan.git/commitdiff
add: status message for build system
authorBastian Dehn <hhaalo@arcor.de>
Sat, 12 Feb 2022 14:37:41 +0000 (15:37 +0100)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 12 Feb 2022 14:37:41 +0000 (15:37 +0100)
CMakeLists.txt
libs/spandisc/CMakeLists.txt

index ef7f7db86c7515e9c10c3d2a4ca8767ce37bd5f4..208007606441be0d61da652f60bcd7eb6524476a 100644 (file)
@@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.13.4)
 
 set(CMAKE_SYSTEM_NAME "Linux" CACHE STRING "Build for Linux")
 
+message(STATUS "CMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}")
+
 if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
        set(CMAKE_C_COMPILER "gcc" CACHE STRING "C Compiler")
        set(CMAKE_CXX_COMPILER "g++" CACHE STRING "C++ Compiler")
index f698e97847f83a681b507f41fe64c46a2d432b98..bc719cc89a62cf4db0547a52e4593c183c7a7b33 100644 (file)
@@ -1,6 +1,7 @@
 cmake_minimum_required(VERSION 3.13.4)
 
 set(CMAKE_SYSTEM_NAME "Linux" CACHE STRING "Build for Linux")
+message(STATUS "CMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}")
 
 if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
        set(CMAKE_C_COMPILER "gcc" CACHE STRING "C Compiler")