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")
|
|
|
|
set (scythername "scyther-macintel")
|
|
|
|
add_executable (${scythername} ${Scyther_sources})
|
2007-01-08 13:41:39 +00:00
|
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fnested-functions -arch i386")
|
2007-01-08 13:24:37 +00:00
|
|
|
|