Skip to content

Commit

Permalink
[studio] do not compile lua when exporting for Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ar2rsawseen committed Aug 18, 2015
1 parent 0343f9a commit f9c8d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/mainwindow.cpp
Expand Up @@ -2683,7 +2683,7 @@ void MainWindow::exportProject()
// compile lua files (with luac)
// disable compile with luac for iOS because 64 bit version
// http://giderosmobile.com/forum/discussion/5380/ios-8-64bit-only-form-feb-2015
if (true && deviceFamily != ExportProjectDialog::e_iOS)
if (deviceFamily != ExportProjectDialog::e_iOS && deviceFamily != ExportProjectDialog::e_MacOSXDesktop)
{
for (int i = 0; i < allluafiles_abs.size(); ++i)
{
Expand Down

0 comments on commit f9c8d4c

Please sign in to comment.