diff options
author | Bobby Neal <snakesandstuff@gmail.com> | 2023-02-26 17:04:17 +0000 |
---|---|---|
committer | Bobby Neal <snakesandstuff@gmail.com> | 2023-02-26 17:04:17 +0000 |
commit | f11d647aa43d08a158567ad4c3a2b5bd6e480fb4 (patch) | |
tree | 655de8ff4fdb8958f2b2264101d7b516e0521f9b /docs | |
parent | 49feaf465df7aae8a7e0e7d8fd924fc0571888d9 (diff) | |
download | gtk+-f11d647aa43d08a158567ad4c3a2b5bd6e480fb4.tar.gz |
Update docs/reference/gtk/getting_started.md
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/gtk/getting_started.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/reference/gtk/getting_started.md b/docs/reference/gtk/getting_started.md index 656683516c..483a5dd494 100644 --- a/docs/reference/gtk/getting_started.md +++ b/docs/reference/gtk/getting_started.md @@ -66,6 +66,8 @@ You can compile the program above with GCC using: gcc $( pkg-config --cflags gtk4 ) -o example-0 example-0.c $( pkg-config --libs gtk4 ) ``` +If the above compilation does not work due to an error regarding "G_APPLICATION_DEFAULT_FLAGS" this could be due to a recent change in GLib/GIO. If your distribution is using a slightly older version you will want to replace this with G_APPLICATION_FLAGS_NONE for this example and others in this documentation. + For more information on how to compile a GTK application, please refer to the [Compiling GTK Applications](compiling.html) section in this reference. |