8enum class DependencyStatus
18 std::string mDescription;
19 DependencyStatus mStatus = DependencyStatus::NotFound;
21 std::string mInstallHint;
22 std::string mInstallUrl;
25class BuildDependencyWindow
29 bool HasMissing()
const;
36 void CheckDevkitPro();
38 void CheckVisualStudio();
42 std::vector<BuildDependency> mDependencies;
45BuildDependencyWindow* GetBuildDependencyWindow();