mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
Rename macro for travis (#671)
This commit is contained in:
parent
590f9fb7b9
commit
c6260b5dcb
@ -55,17 +55,17 @@ CutterCore::CutterCore(QObject *parent) :
|
|||||||
|
|
||||||
#if defined(APPIMAGE) || defined(MACOS_R2_BUNDLED)
|
#if defined(APPIMAGE) || defined(MACOS_R2_BUNDLED)
|
||||||
auto prefix = QDir(QCoreApplication::applicationDirPath());
|
auto prefix = QDir(QCoreApplication::applicationDirPath());
|
||||||
# ifdef APPIMAGE
|
#ifdef APPIMAGE
|
||||||
// Executable is in appdir/bin
|
// Executable is in appdir/bin
|
||||||
prefix.cdUp();
|
prefix.cdUp();
|
||||||
qInfo() << "Setting r2 prefix =" << prefix.absolutePath() << " for AppImage.";
|
qInfo() << "Setting r2 prefix =" << prefix.absolutePath() << " for AppImage.";
|
||||||
# else // MACOS_R2_BUNDLED
|
#else // MACOS_R2_BUNDLED
|
||||||
// Executable is in Contents/MacOS, prefix is Contents/Resources/r2
|
// Executable is in Contents/MacOS, prefix is Contents/Resources/r2
|
||||||
prefix.cdUp();
|
prefix.cdUp();
|
||||||
prefix.cd("Resources");
|
prefix.cd("Resources");
|
||||||
prefix.cd("r2");
|
prefix.cd("r2");
|
||||||
qInfo() << "Setting r2 prefix =" << prefix.absolutePath() << " for macOS Application Bundle.";
|
qInfo() << "Setting r2 prefix =" << prefix.absolutePath() << " for macOS Application Bundle.";
|
||||||
# endif
|
#endif
|
||||||
setConfig("dir.prefix", prefix.absolutePath());
|
setConfig("dir.prefix", prefix.absolutePath());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -52,16 +52,16 @@ void JupyterConnection::initPython()
|
|||||||
#if defined(APPIMAGE) || defined(MACOS_PYTHON_FRAMEWORK_BUNDLED)
|
#if defined(APPIMAGE) || defined(MACOS_PYTHON_FRAMEWORK_BUNDLED)
|
||||||
if (customPythonHome.isNull()) {
|
if (customPythonHome.isNull()) {
|
||||||
auto pythonHomeDir = QDir(QCoreApplication::applicationDirPath());
|
auto pythonHomeDir = QDir(QCoreApplication::applicationDirPath());
|
||||||
# ifdef APPIMAGE
|
#ifdef APPIMAGE
|
||||||
// Executable is in appdir/bin
|
// Executable is in appdir/bin
|
||||||
pythonHomeDir.cdUp();
|
pythonHomeDir.cdUp();
|
||||||
qInfo() << "Setting PYTHONHOME =" << pythonHomeDir.absolutePath() << " for AppImage.";
|
qInfo() << "Setting PYTHONHOME =" << pythonHomeDir.absolutePath() << " for AppImage.";
|
||||||
# else // MACOS_PYTHON_FRAMEWORK_BUNDLED
|
#else // MACOS_PYTHON_FRAMEWORK_BUNDLED
|
||||||
// @executable_path/../Frameworks/Python.framework/Versions/Current
|
// @executable_path/../Frameworks/Python.framework/Versions/Current
|
||||||
pythonHomeDir.cd("../Frameworks/Python.framework/Versions/Current");
|
pythonHomeDir.cd("../Frameworks/Python.framework/Versions/Current");
|
||||||
qInfo() << "Setting PYTHONHOME =" << pythonHomeDir.absolutePath() <<
|
qInfo() << "Setting PYTHONHOME =" << pythonHomeDir.absolutePath() <<
|
||||||
" for macOS Application Bundle.";
|
" for macOS Application Bundle.";
|
||||||
# endif
|
#endif
|
||||||
customPythonHome = pythonHomeDir.absolutePath();
|
customPythonHome = pythonHomeDir.absolutePath();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user