mirror of https://github.com/buggins/dlangide.git
arm support; update dlangui version to fix #101
This commit is contained in:
parent
29fbfb5a07
commit
2e67bc7c08
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "~>0.7.41",
|
||||
"dlangui": "~>0.7.42",
|
||||
"dcd": "~>0.7.5"
|
||||
},
|
||||
|
||||
|
|
|
@ -101,7 +101,10 @@ SettingsPage createProjectSettingsPages() {
|
|||
build.addStringComboBox("build/arch", UIString("Architecture"d), [
|
||||
StringListValue("default", "Default"d),
|
||||
StringListValue("x86", "x86"d),
|
||||
StringListValue("x86_64", "x86_64"d)]);
|
||||
StringListValue("x86_64", "x86_64"d),
|
||||
StringListValue("arm", "arm"d),
|
||||
StringListValue("arm64", "arm64"d),
|
||||
]);
|
||||
build.addCheckbox("build/verbose", UIString("Verbose"d), true);
|
||||
build.addStringEdit("build/dub_additional_params", UIString("DUB additional params"d), "");
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import std.string;
|
|||
import std.array;
|
||||
|
||||
const AVAILABLE_TOOLCHAINS = ["default", "dmd", "ldc", "gdc"];
|
||||
const AVAILABLE_ARCH = ["default", "x86", "x86_64"];
|
||||
const AVAILABLE_ARCH = ["default", "x86", "x86_64", "arm", "arm64"];
|
||||
|
||||
/// local settings for project (not supposed to put under source control)
|
||||
class ProjectSettings : SettingsFile {
|
||||
|
|
Loading…
Reference in New Issue