0

According to a tutorial on

https://developer.gnome.org/gtk-tutorial/stable/c39.html

for making GUI for c-apps the compiling syntax is

gcc base.c -o base `pkg-config --cflags --libs gtk+-2.0`

Its all about these backticksymbols and seem to be suited for POSIX on linux.

If backticks in this context is not allowed in CMD-windows - is there a workaround for compiling a GTK-app in c easily?

Björn Hallström
  • 3,775
  • 9
  • 39
  • 50

1 Answers1

1

Try to use for example GTK+ for Windows (MinGW). Also see related questions How to hide command prompt for my Windows Gtk Apps? and Help compiling GTK+ on Windows using MinGW.

Community
  • 1
  • 1
Mihai8
  • 3,113
  • 1
  • 21
  • 31