Re: GtkD - how to install

2013-12-23 Thread DLang Beginner
On Sunday, 22 December 2013 at 14:52:23 UTC, Russel Winder wrote: On Sun, 2013-12-22 at 13:29 +, Amateur wrote: Hello, I'm beginning with programming on desktop. After choosing which language is da best for me, I chose D. And now I want to create GUI applications, so I tried installing

Re: GtkD - how to install

2013-12-23 Thread Alexandr Druzhinin
Show your package.json file and the project structure.

Re: GtkD - how to install

2013-12-23 Thread DLang Beginner
On Monday, 23 December 2013 at 10:08:09 UTC, Alexandr Druzhinin wrote: Show your package.json file and the project structure. https://www.dropbox.com/s/l3wwm84w85h5su2/dlang-gtk1.png https://www.dropbox.com/s/9vs4r9l3lvdw2y1/dlang-gtk2.png

Re: GtkD - how to install

2013-12-23 Thread Alexandr Druzhinin
23.12.2013 19:19, DLang Beginner пишет: On Monday, 23 December 2013 at 10:08:09 UTC, Alexandr Druzhinin wrote: Show your package.json file and the project structure. https://www.dropbox.com/s/l3wwm84w85h5su2/dlang-gtk1.png https://www.dropbox.com/s/9vs4r9l3lvdw2y1/dlang-gtk2.png You

Re: GtkD - how to install

2013-12-23 Thread Alexandr Druzhinin
23.12.2013 22:52, DLang Beginner пишет: On Monday, 23 December 2013 at 13:50:29 UTC, Alexandr Druzhinin wrote: You shouldn't create your app inside gtkd structure. Try the following: cd mkdir test cd test dub init copy ~/Desktop/gtkd/source/app.d ./source/ copy ~/Desktop/gtkd/package.json . dub

Re: GtkD - how to install

2013-12-23 Thread DLang Beginner
On Monday, 23 December 2013 at 13:50:29 UTC, Alexandr Druzhinin wrote: 23.12.2013 19:19, DLang Beginner пишет: On Monday, 23 December 2013 at 10:08:09 UTC, Alexandr Druzhinin wrote: Show your package.json file and the project structure.

Re: GtkD - how to install

2013-12-23 Thread DLang Beginner
On Monday, 23 December 2013 at 16:20:24 UTC, Alexandr Druzhinin wrote: 23.12.2013 22:52, DLang Beginner пишет: On Monday, 23 December 2013 at 13:50:29 UTC, Alexandr Druzhinin wrote: You shouldn't create your app inside gtkd structure. Try the following: cd mkdir test cd test dub init copy

Re: GtkD - how to install

2013-12-23 Thread Alexandr Druzhinin
23.12.2013 23:50, DLang Beginner пишет: On Monday, 23 December 2013 at 16:20:24 UTC, Alexandr Druzhinin wrote: 23.12.2013 22:52, DLang Beginner пишет: Either build this libraries like me or try to change dependency in package.json: gtk-d: ~master = gtk-d:gtkd: ~master You get error because

GtkD - how to install

2013-12-22 Thread Amateur
Hello, I'm beginning with programming on desktop. After choosing which language is da best for me, I chose D. And now I want to create GUI applications, so I tried installing GtkD and I failed. Can anybody give me a short manual? I'd like to code on linux (openSUSE 13.1), but if I'll get help

Re: GtkD - how to install

2013-12-22 Thread John Colvin
On Sunday, 22 December 2013 at 13:29:04 UTC, Amateur wrote: Hello, I'm beginning with programming on desktop. After choosing which language is da best for me, I chose D. And now I want to create GUI applications, so I tried installing GtkD and I failed. Can anybody give me a short manual?

Re: GtkD - how to install

2013-12-22 Thread Amateur
On Sunday, 22 December 2013 at 13:38:25 UTC, John Colvin wrote: On Sunday, 22 December 2013 at 13:29:04 UTC, Amateur wrote: Hello, I'm beginning with programming on desktop. After choosing which language is da best for me, I chose D. And now I want to create GUI applications, so I tried

Re: GtkD - how to install

2013-12-22 Thread Benjamin Thaut
Am 22.12.2013 15:15, schrieb Amateur: Yeah, I installed dub and ran commands dub init main and dub fetch --local gtk-d. It worked properly, but how to continue? I tried compile simple app which contains only import gtk.MainWindow; and compiler yells that source for this cannot be found. What

Re: GtkD - how to install

2013-12-22 Thread Mike Parker
On 12/22/2013 11:15 PM, Amateur wrote: What have I to do next? I have installed Gtk+ libraries, dmd, dub and I ran too commands dub init main and dub fetch --local gtk-d. You need to add gtkd as a dependency to your project's package.json: { dependencies: {

Re: GtkD - how to install

2013-12-22 Thread Russel Winder
On Sun, 2013-12-22 at 13:29 +, Amateur wrote: Hello, I'm beginning with programming on desktop. After choosing which language is da best for me, I chose D. And now I want to create GUI applications, so I tried installing GtkD and I failed. Can anybody give me a short manual? I cloned

Re: GtkD - how to install

2013-12-22 Thread Mike Wey
On 12/22/2013 03:41 PM, Mike Parker wrote: On 12/22/2013 11:15 PM, Amateur wrote: What have I to do next? I have installed Gtk+ libraries, dmd, dub and I ran too commands dub init main and dub fetch --local gtk-d. You need to add gtkd as a dependency to your project's package.json: {

Re: GtkD - how to install

2013-12-22 Thread Jordi Sayol
El 22/12/13 14:29, Amateur ha escrit: Hello, I'm beginning with programming on desktop. After choosing which language is da best for me, I chose D. And now I want to create GUI applications, so I tried installing GtkD and I failed. Can anybody give me a short manual? I'd like to code on