diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-06-01 11:45:39 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-06-01 11:45:39 +0200 |
commit | 1083e89da3f8182d377a48d0c46cf2308795f974 (patch) | |
tree | e7eaddf4845d043550ef365de64a611c60b7dc1b /cmake/showoptions.cmake | |
parent | 19232ed2b662e8404dd0fdb672ab940e711ac4bc (diff) |
Build: Remove unneccessary /MP compile option when using ninja
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 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("") |