diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-06-15 16:01:22 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-04-13 18:22:53 +0200 |
commit | 3a2bb2fcfdbe66028c1a30f9820775b05be36b03 (patch) | |
tree | 919911968881fe0920e81440ce5c2ebe4bb7cef6 /cmake/showoptions.cmake | |
parent | 9d945f0db0265b00bc6e28bcffd4ab5440d3a99b (diff) |
Build: Normalize executable locations in build directory for all platforms
(cherry picked from commit a7c42f1ed55e586d0d817dd99865aa7c024b0140)
Diffstat (limited to 'cmake/showoptions.cmake')
-rw-r--r-- | cmake/showoptions.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake index 997a498aaf1..259a1646b43 100644 --- a/cmake/showoptions.cmake +++ b/cmake/showoptions.cmake @@ -1,7 +1,7 @@ # output generic information about the core and buildtype chosen message("") message("* TrinityCore revision : ${rev_hash} ${rev_date} (${rev_branch} branch)") -if(NOT "${CMAKE_MAKE_PROGRAM}" MATCHES "MSBuild") +if(NOT ("${CMAKE_GENERATOR}" MATCHES "Visual Studio" OR "${CMAKE_GENERATOR}" STREQUAL "Ninja Multi-Config")) message("* TrinityCore buildtype : ${CMAKE_BUILD_TYPE}") endif() message("") |