aboutsummaryrefslogtreecommitdiff
path: root/cmake/showoptions.cmake
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-06-01 11:45:39 +0200
committerShauren <shauren.trinity@gmail.com>2024-06-01 11:45:39 +0200
commit1083e89da3f8182d377a48d0c46cf2308795f974 (patch)
treee7eaddf4845d043550ef365de64a611c60b7dc1b /cmake/showoptions.cmake
parent19232ed2b662e8404dd0fdb672ab940e711ac4bc (diff)
Build: Remove unneccessary /MP compile option when using ninja
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("")