mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-12 02:28:11 +02:00
Added -DENABLED_LAUNCHER and -DENABLED_EDITOR defines
This commit is contained in:
parent
42ecf05c47
commit
858fb97f42
@ -474,9 +474,11 @@ if(NOT TARGET minizip::minizip)
|
||||
endif()
|
||||
|
||||
if(ENABLE_LAUNCHER)
|
||||
add_definitions(-DENABLE_LAUNCHER)
|
||||
add_subdirectory(launcher)
|
||||
endif()
|
||||
if(ENABLE_EDITOR)
|
||||
add_definitions(-DENABLE_EDITOR)
|
||||
add_subdirectory(mapeditor)
|
||||
endif()
|
||||
add_subdirectory(client)
|
||||
|
@ -63,14 +63,14 @@ void startGame(const QStringList & args)
|
||||
startExecutable(pathToQString(VCMIDirs::get().clientPath()), args);
|
||||
#endif
|
||||
}
|
||||
|
||||
void startEditor(const QStringList & args)
|
||||
{
|
||||
#ifndef Q_OS_IOS
|
||||
startExecutable(pathToQString(VCMIDirs::get().editorPath()), args);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
void startEditor(const QStringList & args)
|
||||
{
|
||||
#ifdef ENABLE_EDITOR
|
||||
startExecutable(pathToQString(VCMIDirs::get().mapEditorPath()), args);
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifndef Q_OS_IOS
|
||||
void startExecutable(QString name, const QStringList & args)
|
||||
{
|
||||
|
@ -69,7 +69,7 @@ MainWindow::MainWindow(QWidget * parent)
|
||||
move(position);
|
||||
}
|
||||
|
||||
#ifdef Q_OS_IOS
|
||||
#ifndef ENABLE_EDITOR
|
||||
ui->startEditorButton->hide();
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user