diff options
author | daan <daanl@outlook.com> | 2021-11-13 13:30:17 -0800 |
---|---|---|
committer | daan <daanl@outlook.com> | 2021-11-13 13:30:17 -0800 |
commit | 97a1584bb5cd479333434baf2f470736bb94e9d0 (patch) | |
tree | be37151cdbfd19f65c289cc012e9bb78bfceed9a /CMakeLists.txt | |
parent | 5dc4ec48fe1a6d7eb4861ab811fd01e3646317ae (diff) | |
parent | c56be7ac5ae682733ddeb14288fd432a68951d5c (diff) |
Merge branch 'dev' into dev-slice
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bc4b3a5..05df33e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,7 @@ set(mi_sources # Convenience: set default build type depending on the build directory # ----------------------------------------------------------------------------- +message(STATUS "") if (NOT CMAKE_BUILD_TYPE) if ("${CMAKE_BINARY_DIR}" MATCHES ".*(D|d)ebug$" OR MI_DEBUG_FULL) message(STATUS "No build type selected, default to: Debug") @@ -199,7 +200,7 @@ if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang|GNU|Intel" AND NOT CMAKE_SYSTEM list(APPEND mi_cflags -ftls-model=initial-exec) endif() if(MI_OVERRIDE) - list(APPEND -fno-builtin-malloc) + list(APPEND mi_cflags -fno-builtin-malloc) endif() endif() @@ -263,13 +264,14 @@ endif() message(STATUS "") message(STATUS "Library base name: ${mi_basename}") +message(STATUS "Version : ${mi_version}") message(STATUS "Build type : ${CMAKE_BUILD_TYPE_LC}") if(MI_USE_CXX) message(STATUS "C++ Compiler : ${CMAKE_CXX_COMPILER}") else() message(STATUS "C Compiler : ${CMAKE_C_COMPILER}") endif() -message(STATUS "Version : ${mi_version}") +message(STATUS "Compiler flags : ${mi_cflags}") message(STATUS "Build targets : ${mi_build_targets}") message(STATUS "") |