diff --git a/examples/dmledit/dub.json b/examples/dmledit/dub.json index afad26cc..707f983f 100644 --- a/examples/dmledit/dub.json +++ b/examples/dmledit/dub.json @@ -13,7 +13,13 @@ "sourceFiles-windows": ["$PACKAGE_DIR/src/win_app.def"], + "versions": ["EmbedStandardResources"], + "dependencies": { - "dlangui": "*", + "dlangui": {"path": "../../"} + }, + + "subConfigurations": { + "dlangui": "minimal" } } diff --git a/examples/example1/dub.json b/examples/example1/dub.json index cd670f62..86fcfa1c 100644 --- a/examples/example1/dub.json +++ b/examples/example1/dub.json @@ -9,12 +9,12 @@ "targetType": "executable", "targetName": "example1", - "versions": ["EmbedStandardResources", "ForceLogs"], - "stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi"], "sourceFiles-windows": ["$PACKAGE_DIR/src/win_app.def"], + "versions": ["EmbedStandardResources", "ForceLogs"], + "dependencies": { "dlangui": {"path": "../../"} }, diff --git a/examples/helloworld/dub.json b/examples/helloworld/dub.json index 4cccf8d6..87269824 100644 --- a/examples/helloworld/dub.json +++ b/examples/helloworld/dub.json @@ -11,7 +11,13 @@ "sourceFiles-windows": ["$PACKAGE_DIR/src/win_app.def"], + "versions": ["EmbedStandardResources"], + "dependencies": { - "dlangui": "*", + "dlangui": {"path": "../../"} + }, + + "subConfigurations": { + "dlangui": "minimal" } } diff --git a/examples/tetris/dub.json b/examples/tetris/dub.json index 9d8719e8..c6de47cf 100644 --- a/examples/tetris/dub.json +++ b/examples/tetris/dub.json @@ -13,7 +13,13 @@ "sourceFiles-windows": ["$PACKAGE_DIR/src/win_app.def"], + "versions": ["EmbedStandardResources", "ForceLogs"], + "dependencies": { - "dlangui": "*" + "dlangui": {"path": "../../"} + }, + + "subConfigurations": { + "dlangui": "minimal" } }