diff --git a/README.md b/README.md index 745d3f6..8d0908b 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,13 @@ Dlang IDE Trying to write D language IDE using dlangUI library. -Use DUB to build and run it. +Build and run with DUB: + + git clone git@github.com:buggins/dlangide.git + cd dlang ide + dub run To develop in VisualD together with DlangUI, put this project on the same level as dlangui repository, and dependencies. To run, it needs FreeImage.dll and directory /res in the same directory as executable. + diff --git a/dub.json b/dub.json index 071fa9b..b9a80dc 100644 --- a/dub.json +++ b/dub.json @@ -16,7 +16,11 @@ ], "copyFiles-windows": [ - "lib/FreeImage.dll", + "lib/FreeImage.dll" + ], + + "copyFiles": [ + "res" ], "mainSourceFile": "src/app.d", diff --git a/lib/SDL2.dll b/lib/SDL2.dll new file mode 100644 index 0000000..18d707f Binary files /dev/null and b/lib/SDL2.dll differ