mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
fix: transaltion in macos only existed english
A regression from previous changes.
This commit is contained in:
parent
e55db7d0ca
commit
ca7fc1c2d3
|
@ -217,16 +217,16 @@ mac {
|
||||||
CONFIG += link_pkgconfig
|
CONFIG += link_pkgconfig
|
||||||
|
|
||||||
|
|
||||||
!CONFIG( no_macos_universal ) {
|
!CONFIG( no_macos_universal ) {
|
||||||
LIBS+= -lhunspell
|
LIBS+= -lhunspell
|
||||||
INCLUDEPATH = $${PWD}/maclibs/include
|
INCLUDEPATH = $${PWD}/maclibs/include
|
||||||
LIBS += -L$${PWD}/maclibs/lib -framework AppKit -framework Carbon
|
LIBS += -L$${PWD}/maclibs/lib -framework AppKit -framework Carbon
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
PKGCONFIG += hunspell
|
PKGCONFIG += hunspell
|
||||||
INCLUDEPATH = /opt/homebrew/include /usr/local/include
|
INCLUDEPATH = /opt/homebrew/include /usr/local/include
|
||||||
LIBS += -L/opt/homebrew/lib -L/usr/local/lib -framework AppKit -framework Carbon
|
LIBS += -L/opt/homebrew/lib -L/usr/local/lib -framework AppKit -framework Carbon
|
||||||
}
|
}
|
||||||
|
|
||||||
OBJECTIVE_SOURCES += lionsupport.mm \
|
OBJECTIVE_SOURCES += lionsupport.mm \
|
||||||
machotkeywrapper.mm \
|
machotkeywrapper.mm \
|
||||||
|
@ -235,23 +235,29 @@ else{
|
||||||
ICON = icons/macicon.icns
|
ICON = icons/macicon.icns
|
||||||
QMAKE_INFO_PLIST = myInfo.plist
|
QMAKE_INFO_PLIST = myInfo.plist
|
||||||
|
|
||||||
!CONFIG( no_macos_universal ) {
|
!CONFIG( no_macos_universal ) {
|
||||||
QMAKE_POST_LINK = mkdir -p GoldenDict.app/Contents/Frameworks && \
|
QMAKE_POST_LINK = mkdir -p GoldenDict.app/Contents/Frameworks && \
|
||||||
cp -nR $${PWD}/maclibs/lib/ GoldenDict.app/Contents/Frameworks/ && \
|
cp -nR $${PWD}/maclibs/lib/ GoldenDict.app/Contents/Frameworks/ && \
|
||||||
mkdir -p GoldenDict.app/Contents/MacOS/help && \
|
mkdir -p GoldenDict.app/Contents/MacOS/locale && \
|
||||||
cp -R $${PWD}/help/*.qch GoldenDict.app/Contents/MacOS/help/
|
cp -R locale/*.qm GoldenDict.app/Contents/MacOS/locale/ && \
|
||||||
}
|
mkdir -p GoldenDict.app/Contents/MacOS/help && \
|
||||||
else{
|
cp -R $${PWD}/help/*.qch GoldenDict.app/Contents/MacOS/help/
|
||||||
QMAKE_POST_LINK = mkdir -p GoldenDict.app/Contents/Frameworks && \
|
}
|
||||||
cp -nR $${PWD}/maclibs/lib/libeb.dylib GoldenDict.app/Contents/Frameworks/ && \
|
else{
|
||||||
mkdir -p GoldenDict.app/Contents/MacOS/help && \
|
QMAKE_POST_LINK = mkdir -p GoldenDict.app/Contents/Frameworks && \
|
||||||
cp -R $${PWD}/help/*.qch GoldenDict.app/Contents/MacOS/help/
|
cp -nR $${PWD}/maclibs/lib/libeb.dylib GoldenDict.app/Contents/Frameworks/ && \
|
||||||
}
|
mkdir -p GoldenDict.app/Contents/MacOS/locale && \
|
||||||
|
cp -R locale/*.qm GoldenDict.app/Contents/MacOS/locale/ && \
|
||||||
|
mkdir -p GoldenDict.app/Contents/MacOS/help && \
|
||||||
|
cp -R $${PWD}/help/*.qch GoldenDict.app/Contents/MacOS/help/
|
||||||
|
}
|
||||||
|
|
||||||
!CONFIG( no_chinese_conversion_support ) {
|
!CONFIG( no_chinese_conversion_support ) {
|
||||||
CONFIG += chinese_conversion_support
|
CONFIG += chinese_conversion_support
|
||||||
QMAKE_POST_LINK += && mkdir -p GoldenDict.app/Contents/MacOS/opencc && \
|
QMAKE_POST_LINK += && mkdir -p GoldenDict.app/Contents/MacOS/opencc && \
|
||||||
cp -R $${PWD}/opencc/*.* GoldenDict.app/Contents/MacOS/opencc/
|
cp -R $${PWD}/opencc/*.* GoldenDict.app/Contents/MacOS/opencc/
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
DEFINES += PROGRAM_VERSION=\\\"$$VERSION\\\"
|
DEFINES += PROGRAM_VERSION=\\\"$$VERSION\\\"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue