diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-06-01 11:45:39 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-04-13 18:17:04 +0200 |
commit | b7783c9cfbd00af624c0aee89f20242cd5f4ec1b (patch) | |
tree | 43babbd493d22d7174a373aa2bd13bdbac316377 /cmake/showoptions.cmake | |
parent | fb8a89162e0db187a6c41e2ef75034f23cdc9677 (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.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake index 260431843d2..997a498aaf1 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("") |