12 lines
467 B
CMake
12 lines
467 B
CMake
################################################################
|
|
# Name: BuildMacIntel.cmake
|
|
# Purpose: Build MacIntel binary
|
|
# Author: Cas Cremers
|
|
################################################################
|
|
|
|
message (STATUS "Building Apple Mac Intel version")
|
|
set (scythername "scyther-mac")
|
|
add_executable (${scythername} ${Scyther_sources})
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mmacosx-version-min=10.6 -arch x86_64")
|
|
set (CMAKE_OSX_ARCHITECTURES "x86_64")
|