mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-21 20:21:19 +00:00
Correct the cpu type for 64bit msvc
This commit is contained in:
parent
f4f8319316
commit
f6b6f1df97
1 changed files with 4 additions and 0 deletions
|
@ -50,6 +50,10 @@ if (cpu STREQUAL "x86_64" AND X86)
|
|||
set(cpu "x86")
|
||||
endif()
|
||||
|
||||
if (MSVC AND CMAKE_CL_64)
|
||||
set(cpu "amd64")
|
||||
endif()
|
||||
|
||||
# target os
|
||||
if (APPLE)
|
||||
set(os "macosx")
|
||||
|
|
Loading…
Reference in a new issue