|
@@ -48,12 +48,16 @@ else()
|
|
|
set(LOVE_TARGET_PLATFORM x86)
|
|
|
endif()
|
|
|
|
|
|
-option(LOVE_JIT "Use LuaJIT" TRUE)
|
|
|
+if(APPLE)
|
|
|
+ option(LOVE_JIT "Use LuaJIT" FALSE)
|
|
|
+else()
|
|
|
+ option(LOVE_JIT "Use LuaJIT" TRUE)
|
|
|
+endif()
|
|
|
option(LOVE_MPG123 "Use mpg123" TRUE)
|
|
|
|
|
|
if(LOVE_JIT)
|
|
|
if(APPLE)
|
|
|
- message(FATAL_ERROR "JIT not supported yet on Mac. Please use -DLOVE_JIT=0.")
|
|
|
+ message(WARNING "JIT not supported yet on Mac.")
|
|
|
endif()
|
|
|
message(STATUS "LuaJIT: Enabled")
|
|
|
else()
|