2007-01-08 13:24:37 +00:00
|
|
|
################################################################
|
|
|
|
# Name: BuildMacIntel.cmake
|
2007-01-09 09:47:06 +00:00
|
|
|
# Purpose: Build MacIntel binary
|
2007-01-08 13:24:37 +00:00
|
|
|
# Author: Cas Cremers
|
|
|
|
################################################################
|
|
|
|
|
|
|
|
message (STATUS "Building Apple Mac Intel version")
|
2012-11-22 13:31:19 +00:00
|
|
|
set (scythername "scyther-mac")
|
2007-01-08 13:24:37 +00:00
|
|
|
add_executable (${scythername} ${Scyther_sources})
|
2012-11-23 08:21:53 +00:00
|
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fnested-functions -arch i386 -mmacosx-version-min=10.6")
|
2007-01-08 13:24:37 +00:00
|
|
|
|