aboutsummaryrefslogtreecommitdiff
path: root/cmake/showoptions.cmake
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-06-01 11:45:39 +0200
committerOvahlord <dreadkiller@gmx.de>2024-06-20 01:15:16 +0200
commitac7186a75f0c7165cc2542b022471196676e762e (patch)
treed3dd1a5b44442cf5fc0c3008c496a2f9a0d568e1 /cmake/showoptions.cmake
parentbf854aa0b6313717fb72558145d92d597f05def7 (diff)
Build: Remove unneccessary /MP compile option when using ninja
(cherry picked from commit 1083e89da3f8182d377a48d0c46cf2308795f974)
Diffstat (limited to 'cmake/showoptions.cmake')
-rw-r--r--cmake/showoptions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake
index dea6ef01ed4..0cf0862dd00 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(UNIX)
+if(NOT "${CMAKE_MAKE_PROGRAM}" MATCHES "MSBuild")
message("* TrinityCore buildtype : ${CMAKE_BUILD_TYPE}")
endif()
message("")