ui: added initial auto-detection for cpp standard headers and java runtime library
* when Coati is started with no java-path or global cxx header or framework paths in the appsettings they are auto-detected using the first working detector * order in which the detectors are shown in gui now matches the order they are added to the combined detector.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#ifndef UTILITY_PATH_DETECTION_H
|
||||
#define UTILITY_PATH_DETECTION_H
|
||||
|
||||
#include "utility/path_detector/CombinedPathDetector.h"
|
||||
|
||||
namespace utility
|
||||
{
|
||||
std::shared_ptr<CombinedPathDetector> getJavaRuntimePathDetector();
|
||||
std::shared_ptr<CombinedPathDetector> getCxxHeaderPathDetector();
|
||||
std::shared_ptr<CombinedPathDetector> getCxxFrameworkPathDetector();
|
||||
}
|
||||
|
||||
|
||||
#endif // UTILITY_PATH_DETECTION_H
|
||||
|
||||
Reference in New Issue
Block a user