mirror of https://github.com/GNOME/gimp.git
Change GTK+ to GTK
GTK got rid of the + in 2019: https://lwn.net/Articles/779305/
This commit is contained in:
parent
07cd09e290
commit
e601a6c7de
18
INSTALL.in
18
INSTALL.in
|
@ -67,7 +67,7 @@ header files installed.
|
||||||
"gegl:introspect" which is always built but deactivated unless
|
"gegl:introspect" which is always built but deactivated unless
|
||||||
the `dot` tool from graphviz is available (runtime dependency).
|
the `dot` tool from graphviz is available (runtime dependency).
|
||||||
|
|
||||||
4. You need to have installed GTK+ version @GTK_REQUIRED_VERSION@ or newer.
|
4. You need to have installed GTK version @GTK_REQUIRED_VERSION@ or newer.
|
||||||
GIMP also needs a recent version of GLib (>= @GLIB_REQUIRED_VERSION@), GDK-Pixbuf
|
GIMP also needs a recent version of GLib (>= @GLIB_REQUIRED_VERSION@), GDK-Pixbuf
|
||||||
(>= @GDK_PIXBUF_REQUIRED_VERSION@), and Pango (>= @PANGOCAIRO_REQUIRED_VERSION@). Sources for these can be grabbed
|
(>= @GDK_PIXBUF_REQUIRED_VERSION@), and Pango (>= @PANGOCAIRO_REQUIRED_VERSION@). Sources for these can be grabbed
|
||||||
from ftp://ftp.gtk.org/.
|
from ftp://ftp.gtk.org/.
|
||||||
|
@ -191,7 +191,7 @@ header files installed.
|
||||||
|
|
||||||
15. GObject Introspection requires the following dependencies to be
|
15. GObject Introspection requires the following dependencies to be
|
||||||
built and installed with introspection as well: babl, cairo,
|
built and installed with introspection as well: babl, cairo,
|
||||||
GdkPixbuf, GEGL, GIO, GLib, GObject and GTK+.
|
GdkPixbuf, GEGL, GIO, GLib, GObject and GTK.
|
||||||
|
|
||||||
16. Windows builds can now generate backtrace logs upon a crash.
|
16. Windows builds can now generate backtrace logs upon a crash.
|
||||||
The logs will be available in: %APPDATA%\GIMP\@GIMP_APP_VERSION@\CrashLog\
|
The logs will be available in: %APPDATA%\GIMP\@GIMP_APP_VERSION@\CrashLog\
|
||||||
|
@ -233,7 +233,7 @@ header files installed.
|
||||||
GIO
|
GIO
|
||||||
GLib @GLIB_REQUIRED_VERSION@
|
GLib @GLIB_REQUIRED_VERSION@
|
||||||
glib-networking
|
glib-networking
|
||||||
GTK+ @GTK_REQUIRED_VERSION@
|
GTK @GTK_REQUIRED_VERSION@
|
||||||
gvfs (on Linux)
|
gvfs (on Linux)
|
||||||
HarfBuzz @HARFBUZZ_REQUIRED_VERSION@
|
HarfBuzz @HARFBUZZ_REQUIRED_VERSION@
|
||||||
libbzip2
|
libbzip2
|
||||||
|
@ -398,7 +398,7 @@ These are:
|
||||||
|
|
||||||
--with-html-dir=PATH. This option allows to specify where the
|
--with-html-dir=PATH. This option allows to specify where the
|
||||||
libgimp API reference should be installed. You might want to modify
|
libgimp API reference should be installed. You might want to modify
|
||||||
the path so it points to the place where glib and gtk+ installed
|
the path so it points to the place where glib and gtk installed
|
||||||
their API references so that the libgimp reference can link to
|
their API references so that the libgimp reference can link to
|
||||||
them.
|
them.
|
||||||
|
|
||||||
|
@ -474,7 +474,7 @@ When ./configure fails
|
||||||
scripts. The most recent version is available from
|
scripts. The most recent version is available from
|
||||||
https://www.freedesktop.org/software/pkgconfig/
|
https://www.freedesktop.org/software/pkgconfig/
|
||||||
|
|
||||||
'configure' tries to compile and run a short GTK+ program. There are
|
'configure' tries to compile and run a short GTK program. There are
|
||||||
several reasons why this might fail:
|
several reasons why this might fail:
|
||||||
|
|
||||||
* pkg-config could not find the file 'gtk+-2.0.pc' that gets installed
|
* pkg-config could not find the file 'gtk+-2.0.pc' that gets installed
|
||||||
|
@ -501,14 +501,14 @@ several reasons why this might fail:
|
||||||
or
|
or
|
||||||
LDFLAGS="-Wl,-rpath -Wl,/home/joe/lib" ./configure
|
LDFLAGS="-Wl,-rpath -Wl,/home/joe/lib" ./configure
|
||||||
|
|
||||||
* An old version of the GTK+ libraries was found instead of
|
* An old version of the GTK libraries was found instead of
|
||||||
your newly installed version. This commonly happens if a
|
your newly installed version. This commonly happens if a
|
||||||
binary package of GTK+ was previously installed on your system,
|
binary package of GTK was previously installed on your system,
|
||||||
and you later compiled GTK+ from source.
|
and you later compiled GTK from source.
|
||||||
|
|
||||||
Fix: Remove the old libraries and include files. If you are afraid
|
Fix: Remove the old libraries and include files. If you are afraid
|
||||||
that removing the old libraries may break other packages supplied by
|
that removing the old libraries may break other packages supplied by
|
||||||
your distributor, you can try installing GLib, GTK+ and other
|
your distributor, you can try installing GLib, GTK and other
|
||||||
libraries in a different prefix after setting the environment
|
libraries in a different prefix after setting the environment
|
||||||
variable PKG_CONFIG_LIBDIR to point to lib/pkgconfig/ in that new
|
variable PKG_CONFIG_LIBDIR to point to lib/pkgconfig/ in that new
|
||||||
prefix so that it does not try to read the *.pc files from the
|
prefix so that it does not try to read the *.pc files from the
|
||||||
|
|
|
@ -385,11 +385,11 @@ gui_sanity_check (void)
|
||||||
{
|
{
|
||||||
return g_strdup_printf
|
return g_strdup_printf
|
||||||
("%s\n\n"
|
("%s\n\n"
|
||||||
"GIMP requires GTK+ version %d.%d.%d or later.\n"
|
"GIMP requires GTK version %d.%d.%d or later.\n"
|
||||||
"Installed GTK+ version is %d.%d.%d.\n\n"
|
"Installed GTK version is %d.%d.%d.\n\n"
|
||||||
"Somehow you or your software packager managed\n"
|
"Somehow you or your software packager managed\n"
|
||||||
"to install GIMP with an older GTK+ version.\n\n"
|
"to install GIMP with an older GTK version.\n\n"
|
||||||
"Please upgrade to GTK+ version %d.%d.%d or later.",
|
"Please upgrade to GTK version %d.%d.%d or later.",
|
||||||
mismatch,
|
mismatch,
|
||||||
GTK_REQUIRED_MAJOR, GTK_REQUIRED_MINOR, GTK_REQUIRED_MICRO,
|
GTK_REQUIRED_MAJOR, GTK_REQUIRED_MINOR, GTK_REQUIRED_MICRO,
|
||||||
gtk_major_version, gtk_minor_version, gtk_micro_version,
|
gtk_major_version, gtk_minor_version, gtk_micro_version,
|
||||||
|
|
|
@ -98,7 +98,7 @@
|
||||||
</config>
|
</config>
|
||||||
<!-- Components -->
|
<!-- Components -->
|
||||||
<config name="ComponentsDepsDescription">
|
<config name="ComponentsDepsDescription">
|
||||||
<value>Run-time libraries used by GIMP, including GTK+ Run-time Environment</value>
|
<value>Run-time libraries used by GIMP, including GTK Run-time Environment</value>
|
||||||
</config>
|
</config>
|
||||||
<!-- Components -->
|
<!-- Components -->
|
||||||
<config name="ComponentsDebug">
|
<config name="ComponentsDebug">
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
</config>
|
</config>
|
||||||
<!-- Components -->
|
<!-- Components -->
|
||||||
<config name="ComponentsGtkWimp">
|
<config name="ComponentsGtkWimp">
|
||||||
<value>MS-Windows engine for GTK+</value>
|
<value>MS-Windows engine for GTK</value>
|
||||||
</config>
|
</config>
|
||||||
<!-- Components -->
|
<!-- Components -->
|
||||||
<config name="ComponentsGtkWimpDescription">
|
<config name="ComponentsGtkWimpDescription">
|
||||||
|
|
|
@ -571,7 +571,7 @@ if test "x$os_win32" = xyes; then
|
||||||
esac
|
esac
|
||||||
if test "x$msnative_struct" = x ; then
|
if test "x$msnative_struct" = x ; then
|
||||||
AC_MSG_RESULT([no way])
|
AC_MSG_RESULT([no way])
|
||||||
AC_MSG_WARN([build will be incompatible with GTK+ DLLs])
|
AC_MSG_WARN([build will be incompatible with GTK DLLs])
|
||||||
else
|
else
|
||||||
CFLAGS="$CFLAGS $msnative_struct"
|
CFLAGS="$CFLAGS $msnative_struct"
|
||||||
AC_MSG_RESULT([${msnative_struct}])
|
AC_MSG_RESULT([${msnative_struct}])
|
||||||
|
@ -2815,7 +2815,7 @@ AC_ARG_ENABLE(default-binary, [ --enable-default-binary install this as the def
|
||||||
AM_CONDITIONAL(DEFAULT_BINARY, test "x$enable_default_binary" = xyes)
|
AM_CONDITIONAL(DEFAULT_BINARY, test "x$enable_default_binary" = xyes)
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(gimp-console, [ --enable-gimp-console build a console-only binary which does not link GTK+], , enable_gimp_console=yes)
|
AC_ARG_ENABLE(gimp-console, [ --enable-gimp-console build a console-only binary which does not link GTK], , enable_gimp_console=yes)
|
||||||
|
|
||||||
AM_CONDITIONAL(ENABLE_GIMP_CONSOLE, test "x$enable_gimp_console" != xno)
|
AM_CONDITIONAL(ENABLE_GIMP_CONSOLE, test "x$enable_gimp_console" != xno)
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ But this happens only for crashes, so it still requires to use
|
||||||
Note: on Windows, even the debugging GUI happens only for crashes and
|
Note: on Windows, even the debugging GUI happens only for crashes and
|
||||||
requires that you built with Dr. Mingw dependency.
|
requires that you built with Dr. Mingw dependency.
|
||||||
|
|
||||||
## Debugging GTK+ ##
|
## Debugging GTK ##
|
||||||
|
|
||||||
You can use GtkInspector by running GIMP with:
|
You can use GtkInspector by running GIMP with:
|
||||||
|
|
||||||
|
|
|
@ -277,7 +277,7 @@
|
||||||
<!-- GTK+ -->
|
<!-- GTK+ -->
|
||||||
<g id="node48" class="node"><title>GTK+</title>
|
<g id="node48" class="node"><title>GTK+</title>
|
||||||
<ellipse fill="lightblue" stroke="black" cx="577" cy="-463" rx="36.977" ry="19.0919"/>
|
<ellipse fill="lightblue" stroke="black" cx="577" cy="-463" rx="36.977" ry="19.0919"/>
|
||||||
<text text-anchor="middle" x="577" y="-459.9" font-family="Times Roman,serif" font-size="14.00">GTK+</text>
|
<text text-anchor="middle" x="577" y="-459.9" font-family="Times Roman,serif" font-size="14.00">GTK</text>
|
||||||
</g>
|
</g>
|
||||||
<!-- libgimpwidgets->GTK+ -->
|
<!-- libgimpwidgets->GTK+ -->
|
||||||
<g id="edge48" class="edge"><title>libgimpwidgets->GTK+</title>
|
<g id="edge48" class="edge"><title>libgimpwidgets->GTK+</title>
|
||||||
|
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
@ -57,7 +57,7 @@ Show GIMP command\-line options.
|
||||||
Show all command\-line options.
|
Show all command\-line options.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-help-gtk
|
.B \-\-help-gtk
|
||||||
Show GTK+ command\-line options.
|
Show GTK command\-line options.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-help-gegl
|
.B \-\-help-gegl
|
||||||
Show GEGL command\-line options.
|
Show GEGL command\-line options.
|
||||||
|
@ -203,11 +203,11 @@ home directories the first time GIMP is run.
|
||||||
with the tool, colors, brush, pattern and gradient associated to that
|
with the tool, colors, brush, pattern and gradient associated to that
|
||||||
device.
|
device.
|
||||||
|
|
||||||
@manpage_gimpdir@/gtkrc - users set of GIMP-specific GTK+ config
|
@manpage_gimpdir@/gtkrc - users set of GIMP-specific GTK config
|
||||||
settings. Options such as widget color and fonts sizes can be set
|
settings. Options such as widget color and fonts sizes can be set
|
||||||
here.
|
here.
|
||||||
|
|
||||||
@gimpsysconfdir@/gtkrc - system wide default set of GIMP-specific GTK+
|
@gimpsysconfdir@/gtkrc - system wide default set of GIMP-specific GTK
|
||||||
config settings.
|
config settings.
|
||||||
|
|
||||||
@manpage_gimpdir@/menurc - user's set of keybindings.
|
@manpage_gimpdir@/menurc - user's set of keybindings.
|
||||||
|
@ -326,7 +326,7 @@ https://gitlab.gnome.org/GNOME/gimp/issues. Before reporting bugs,
|
||||||
please check to see if the bug has already been reported.
|
please check to see if the bug has already been reported.
|
||||||
|
|
||||||
When reporting GIMP bugs, it is important to include a reliable way to
|
When reporting GIMP bugs, it is important to include a reliable way to
|
||||||
reproduce the bug, version number of GIMP (and probably GTK+), OS name
|
reproduce the bug, version number of GIMP (and probably GTK), OS name
|
||||||
and version, and any relevant hardware specs. If a bug is causing a
|
and version, and any relevant hardware specs. If a bug is causing a
|
||||||
crash, it is very useful if a stack trace can be provided. And of
|
crash, it is very useful if a stack trace can be provided. And of
|
||||||
course, patches to rectify the bug are even better.
|
course, patches to rectify the bug are even better.
|
||||||
|
@ -340,7 +340,7 @@ tutorials, data sets, mailing list archives, and more.
|
||||||
There is also a GIMP User Manual available at https://docs.gimp.org/
|
There is also a GIMP User Manual available at https://docs.gimp.org/
|
||||||
that goes into much more detail about the interactive use of GIMP.
|
that goes into much more detail about the interactive use of GIMP.
|
||||||
|
|
||||||
The latest versions of GIMP and the GTK+ libs are always available at
|
The latest versions of GIMP and the GTK libs are always available at
|
||||||
https://download.gimp.org/.
|
https://download.gimp.org/.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -175,14 +175,14 @@ Print the linker flags that are necessary to link a \fIGIMP\fP plug-in.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-libs-noui
|
.B \-\-libs-noui
|
||||||
Print the linker flags that are necessary to link a \fIGIMP\fP plug-in, for
|
Print the linker flags that are necessary to link a \fIGIMP\fP plug-in, for
|
||||||
plug-ins that do not require the GTK+ libraries.
|
plug-ins that do not require the GTK libraries.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-cflags
|
.B \-\-cflags
|
||||||
Print the compiler flags that are necessary to compile a \fIGIMP\fP plug-in.
|
Print the compiler flags that are necessary to compile a \fIGIMP\fP plug-in.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-clags-noui
|
.B \-\-clags-noui
|
||||||
Print the compiler flags that are necessary to compile a \fIGIMP\fP plug-in
|
Print the compiler flags that are necessary to compile a \fIGIMP\fP plug-in
|
||||||
for plug-ins that do not require the GTK+ libraries.
|
for plug-ins that do not require the GTK libraries.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-prefix=PREFIX
|
.B \-\-prefix=PREFIX
|
||||||
If specified, use PREFIX instead of the installation prefix that \fIGIMP\fP
|
If specified, use PREFIX instead of the installation prefix that \fIGIMP\fP
|
||||||
|
@ -216,7 +216,7 @@ LIBS=-lintl .
|
||||||
.TP 8
|
.TP 8
|
||||||
.B PKG_CONFIG
|
.B PKG_CONFIG
|
||||||
to get the location of the \fIpkg-config\fP program that is used to determine
|
to get the location of the \fIpkg-config\fP program that is used to determine
|
||||||
details about your glib, pango, gtk+ and gimp installation.
|
details about your glib, pango, gtk and gimp installation.
|
||||||
|
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
how to create your own plug-ins.
|
how to create your own plug-ins.
|
||||||
Each plug-in does the same thing, except it is developed in a
|
Each plug-in does the same thing, except it is developed in a
|
||||||
different programming language.
|
different programming language.
|
||||||
They all create a GTK+ dialog with a text view displaying their own code
|
They all create a GTK dialog with a text view displaying their own code
|
||||||
(hence also demonstrating how to package data) and a button which calls
|
(hence also demonstrating how to package data) and a button which calls
|
||||||
a GEGL operation on the active layer.
|
a GEGL operation on the active layer.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -59892,7 +59892,7 @@
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="629.85901"
|
x="629.85901"
|
||||||
y="642.7876"
|
y="642.7876"
|
||||||
id="tspan14932-5">GTK+ icons</tspan></text>
|
id="tspan14932-5">GTK icons</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cc0000;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:0.371054;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cc0000;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:0.371054;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
d="m 640.67009,669.37291 c -3.32802,-0.056 -6.44204,2.043 -7.539,5.372 -1.35011,4.0977 0.88144,8.5113 4.97677,9.8621 4.09532,1.3508 8.50693,-0.8828 9.85703,-4.9803 l 0.0729,-0.1949 c 1.21344,-4.053 -1.03348,-8.3421 -5.04964,-9.667 -0.76787,-0.2532 -1.55003,-0.3787 -2.31803,-0.3919 z m -0.1221,2.3454 c 3.01848,0 5.46519,2.4483 5.46519,5.4685 0,1.0114 -0.27977,1.9541 -0.75824,2.7667 l -7.47204,-7.479 c 0.81174,-0.4779 1.75514,-0.7562 2.76509,-0.7562 z m -4.70301,2.6939 7.47007,7.483 c -0.81226,0.4788 -1.75615,0.7583 -2.76706,0.7583 -3.0185,0 -5.46519,-2.4467 -5.46519,-5.4667 0,-1.014 0.28148,-1.9605 0.76218,-2.7746 z"
|
d="m 640.67009,669.37291 c -3.32802,-0.056 -6.44204,2.043 -7.539,5.372 -1.35011,4.0977 0.88144,8.5113 4.97677,9.8621 4.09532,1.3508 8.50693,-0.8828 9.85703,-4.9803 l 0.0729,-0.1949 c 1.21344,-4.053 -1.03348,-8.3421 -5.04964,-9.667 -0.76787,-0.2532 -1.55003,-0.3787 -2.31803,-0.3919 z m -0.1221,2.3454 c 3.01848,0 5.46519,2.4483 5.46519,5.4685 0,1.0114 -0.27977,1.9541 -0.75824,2.7667 l -7.47204,-7.479 c 0.81174,-0.4779 1.75514,-0.7562 2.76509,-0.7562 z m -4.70301,2.6939 7.47007,7.483 c -0.81226,0.4788 -1.75615,0.7583 -2.76706,0.7583 -3.0185,0 -5.46519,-2.4467 -5.46519,-5.4667 0,-1.014 0.28148,-1.9605 0.76218,-2.7746 z"
|
||||||
|
|
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
|
@ -26487,7 +26487,7 @@
|
||||||
y="744.66333"
|
y="744.66333"
|
||||||
x="466.40045"
|
x="466.40045"
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="stroke-width:1.00044">GTK+ icons</tspan></text>
|
style="stroke-width:1.00044">GTK icons</tspan></text>
|
||||||
<g
|
<g
|
||||||
inkscape:label="gtk-cancel"
|
inkscape:label="gtk-cancel"
|
||||||
transform="matrix(0.80004464,0,0,0.79676613,483.56671,-35.78622)"
|
transform="matrix(0.80004464,0,0,0.79676613,483.56671,-35.78622)"
|
||||||
|
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
|
@ -270,7 +270,7 @@ if platform_windows and cc.get_id() == 'gcc'
|
||||||
if msvc_compat_args == []
|
if msvc_compat_args == []
|
||||||
error('''
|
error('''
|
||||||
GCC does not support '-fnative-struct' nor '-mms-bitfields'.
|
GCC does not support '-fnative-struct' nor '-mms-bitfields'.
|
||||||
Build will be incompatible with GTK+ DLLs.
|
Build will be incompatible with GTK DLLs.
|
||||||
''')
|
''')
|
||||||
endif
|
endif
|
||||||
compiler_args += msvc_compat_args
|
compiler_args += msvc_compat_args
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Build properties
|
# Build properties
|
||||||
option('ansi', type: 'boolean', value: false, description: 'Turn on strict ansi')
|
option('ansi', type: 'boolean', value: false, description: 'Turn on strict ansi')
|
||||||
option('enable-console-bin',type: 'boolean', value: true, description: 'Build a console-only binary which does not link GTK+')
|
option('enable-console-bin',type: 'boolean', value: true, description: 'Build a console-only binary which does not link GTK')
|
||||||
option('win32-debug-console',type:'boolean', value: true, description: 'Open a console when starting the program')
|
option('win32-debug-console',type:'boolean', value: true, description: 'Open a console when starting the program')
|
||||||
option('enable-default-bin',type: 'boolean', value: true, description: 'Build default Gtk+ binary')
|
option('enable-default-bin',type: 'boolean', value: true, description: 'Build default Gtk binary')
|
||||||
option('enable-multiproc', type: 'boolean', value: true, description: 'Support for multiple processors')
|
option('enable-multiproc', type: 'boolean', value: true, description: 'Support for multiple processors')
|
||||||
option('profiling', type: 'boolean', value: false, description: 'Enable profiling')
|
option('profiling', type: 'boolean', value: false, description: 'Enable profiling')
|
||||||
option('windows-installer', type: 'boolean', value: false, description: 'Generate files needed for the Windows installer')
|
option('windows-installer', type: 'boolean', value: false, description: 'Generate files needed for the Windows installer')
|
||||||
|
|
Loading…
Reference in New Issue