Skip to content

Commit

Permalink
Teach Mac build script where to find lrelease
Browse files Browse the repository at this point in the history
lrelease is a Qt tool for generating i18n files
and is part of the Qt release and is therefore 
found in the bin directory within Qt itself.

Ensure the mac-build-app script knows where to
look for lrelease.
  • Loading branch information
samaaron committed Jan 29, 2015
1 parent b48ce3a commit abcd931
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/gui/qt/mac-build-app
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ LIBQS_LINK=libqscintilla2.11.dylib
## ----

QMAKE=$QTBIN/qmake
LREL=$QTBIN/lrelease
MACDEPLOYQT=$QTBIN/macdeployqt
LIBQS_PATH=$QSCINTILLA/$LIBQS

Expand All @@ -38,7 +39,7 @@ cp -f ruby_help.tmpl ruby_help.h
../../server/bin/qt-doc.rb -o ruby_help.h

# Generate i18n files
lrelease SonicPi.pro
$LREL SonicPi.pro

# Build app
$QMAKE -o Makefile SonicPi.pro
Expand Down

0 comments on commit abcd931

Please sign in to comment.