From ffdc33ce8e011fdc05dcbfb8d39f17611362d0c3 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Wed, 25 Jan 2017 18:17:26 +0100 Subject: [PATCH] Report host compiler we're using on configuration --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index cb40de8..2f8de6d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -100,3 +100,8 @@ add_subdirectory(external) add_subdirectory(src) add_subdirectory(tests) add_subdirectory(android) + +if (NOT "${HOST_CMAKE_C_COMPILER}" STREQUAL "") + message(STATUS "Host C compiler: ${HOST_CMAKE_C_COMPILER}") + message(STATUS "Host C compiler: ${HOST_CMAKE_CXX_COMPILER}") +endif()