diff --git a/source/ArmarXGui/applications/ArmarXGui/ArmarXGuiApp.cpp b/source/ArmarXGui/applications/ArmarXGui/ArmarXGuiApp.cpp index 22c7dfcc50d83787f7ff8c330458f6b9e2509b35..75cf83b3adaeee6681c086f60161323cd7d678ef 100644 --- a/source/ArmarXGui/applications/ArmarXGui/ArmarXGuiApp.cpp +++ b/source/ArmarXGui/applications/ArmarXGui/ArmarXGuiApp.cpp @@ -174,12 +174,13 @@ namespace armarx int ArmarXGuiApp::startArmarX() { - CMakePackageFinder finder("ArmarXCore"); + CMakePackageFinder armarx_core("ArmarXCore"); + CMakePackageFinder armarx_memoryx("MemoryX"); int res; - if (finder.packageFound()) + if (armarx_core.packageFound()) { - res = system(std::string(finder.getBinaryDir() + std::string("/armarx start")).c_str()); + res = system(std::string(armarx_core.getBinaryDir() + std::string("/armarx start")).c_str()); } else { @@ -189,19 +190,18 @@ namespace armarx if (res == EXIT_SUCCESS) { ARMARX_INFO_S << "Started ArmarX successfully!"; - if (finder.packageFound()) - { - res = system(std::string(finder.getBinaryDir() + std::string("/armarx memory start")).c_str()); - } - else - { - res = system("armarx memory assureRunning"); - } - res = WEXITSTATUS(res); - if (res == EXIT_FAILURE) - { - QMessageBox::warning(nullptr, "ArmarX Error", "Could not start MongoDB! See terminal output for more information. The GUI will now started anyway."); - return 0; + if (armarx_memoryx.packageFound()) { + if (armarx_core.packageFound()) { + res = system(std::string(armarx_core.getBinaryDir() + std::string("/armarx memory start")).c_str()); + } else { + res = system("armarx memory assureRunning"); + } + res = WEXITSTATUS(res); + if (res == EXIT_FAILURE) { + QMessageBox::warning(nullptr, "ArmarX Error", + "Could not start MongoDB! See terminal output for more information. The GUI will now started anyway."); + return 0; + } } } else