From e9bdb819c9e05f3e69f7a467208623b9af641af9 Mon Sep 17 00:00:00 2001 From: iWas-Coder Date: Thu, 5 Sep 2024 13:52:32 +0200 Subject: [PATCH] Added msg in CMake to see target system ID --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 94e5958..8771768 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,8 @@ set(CMAKE_PROJECT_VERSION 0.1-alpha) volt_set_c_compiler_options() volt_set_cxx_compiler_options() +message(STATUS "The requested build target is ${CMAKE_SYSTEM}") + add_subdirectory(vendor) add_subdirectory(editor) add_subdirectory(src)