mirror of
https://github.com/Naios/continuable.git
synced 2025-12-07 01:06:44 +08:00
12 lines
200 B
CMake
12 lines
200 B
CMake
if(CMAKE_SIZEOF_VOID_P MATCHES 8)
|
|
set(PLATFORM 64)
|
|
else()
|
|
set(PLATFORM 32)
|
|
endif()
|
|
|
|
if (PLATFORM EQUAL 64)
|
|
add_definitions("-D_WIN64")
|
|
endif()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /MP")
|