Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-14 Thread arkkimede
I agree with you!. I started to work in 1991 where my terminal was a VT100 with green phosphors with input only the keyboard and OS unix. No graphics, no windows, no mouse. I worked for several years in this condition using only vi (not vim) and little bash scripts to compile the source code. Now,

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-14 Thread Lucky B.C
Hi, I only use *vim* + *cmake* + *git* for developing my open source projects. There's no reason for me to use IDEs, why? My laptop is not strong enough run any IDE. Tips: + *CMake* is a great idea to help us compiling C source files in any platform. + *Git* is a version control system. + *Vim* i

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Matthew A. Postiff
Have you tried https://www.kdevelop.org/? I have been using it lately and like it for code editing and compilation both on Linux and Windows. It provides more info about the source code than emacs tags does. I haven't gotten the hang of debugging with KDevelop, so I still debug in emacs+gud-gd

IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread pspgen
If you do not want to cross-compile then you CAN use code blocks to develop GTK+3 based applications. You don't anymore need the project creation wizzard. Especially since GTK+3.12 or so. Just add the search directories and add `pkg-config --libs gtk+-3.0` into the linker additional options.

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Nicola Fontana
Il Mon, 7 May 2018 09:30:13 +0200 arkkimede scrisse: > ... > Now I would migrate on WIndows 10 by means of MSYS2. > > There is an IDE (better if open source) that I can use instean to follow to > use vi? > ... Hi, it seems to me a step backward: nothing can beat a properly configured (vim|emac

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Dov Grobgeld
Why don't you cross compile from Linux to Windows? I have for years maintained several gtk based applications, including the building of installers for windows through make-nsis, and done everything from Linux. Regards, Dov On Mon, May 7, 2018 at 10:30 AM, arkkimede wrote: > Hi! > I need an ad

Re: IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread Igor Chetverovod
For GTK app development I am using Qt Creator (community edition) for Linux and Win.   Also it has vi mode. Отправлено с моего смартфона BlackBerry 10.   Исходное сообщение   От: arkkimede Отправлено: понедельник, 7 мая 2018 г., 10:30 Кому: gtk-app-devel-list list Тема: IDE to develop app with

IDE to develop app with GTK3 on windows using MSYS2

2018-05-07 Thread arkkimede
Hi! I need an advice: I written apps on Linux with GTK3 using essentially vi and Makefile to build the project splitten in multiple C files with the corresponding H file. Now I would migrate on WIndows 10 by means of MSYS2. There is an IDE (better if open source) that I can use instean to follow