0
0
Fork 0
mirror of https://github.com/dhewm/dhewm3.git synced 2025-03-22 10:41:08 +00:00

Correct the cpu type for 64bit msvc

This commit is contained in:
dhewg 2012-07-06 00:28:26 +02:00
parent 78822ac932
commit 1f9c88fc22

View file

@ -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")