fltk/documentation/fltk-config.man
Michael R Sweet b91935040a Flip the color of Fl_Choice to FL_BACKGROUND2_COLOR when there is no
scheme so the menu uses the same color as the background.

Add -Dname[=value] documentation to fltk-config man page.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5485 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2006-09-24 13:35:23 +00:00

96 lines
2.1 KiB
Groff

.TH fltk-config 1 "Fast Light Tool Kit" "24 September 2006"
.SH NAME
fltk-config \- script to get information about the installed version of fltk.
.sp
.SH SYNOPSIS
fltk-config [ --prefix
.I [=DIR]
] [ --exec-prefix
.I [=DIR]
] [ --version ] [ --api-version ] [ --use-gl ] [ --use-images ] [ --use-glut ]
[ --cc ] [ --cxx ]
[ --cflags ] [ --cxxflags ] [ --ldflags ] [ --ldstaticflags ] [ --libs ]
[ -D\fIname[=value]\fR ] [ -g ] [ --compile
.I program.cxx
] [ --post
.I program
]
.SH DESCRIPTION
\fIfltk-config\fR is a utility script that can be used to get information
about the current version of FLTK that is installed on the system, what
compiler and linker options to use when building FLTK-based applications,
and to build simple FLTK applications.
.LP
The following options are supported:
.TP 5
--api-version
.br
Displays the current FLTK API version number, e.g. "1.1".
.TP 5
--cc
.TP 5
--cxx
.br
Displays the C/C++ compiler that was used to compile FLTK.
.TP 5
--cflags
.TP 5
--cxxflags
.br
Displays the C/C++ compiler options to use when compiling source
files that use FLTK.
.TP 5
--compile \fIprogram.cxx\fR
.br
Compiles the source file \fIprogram.cxx\fR into \fIprogram\fR.
This option implies "--post \fIprogram\fR".
.TP 5
-g
.br
Enables debugging information when compiling with the \fI--compile\fR
option.
.TP 5
--ldflags
.br
Displays the linker options to use when linking a FLTK
application.
.TP 5
--ldstaticflags
.br
Displays the linker options to use when linking a FLTK
application to the static FLTK libraries.
.TP 5
--libs
.br
Displays the full path to the FLTK library files, to be used for
dependency checking.
.TP 5
--post \fIprogram\fR
.br
Binds the default FLTK resource fork to a program under MacOS.
Does nothing on other operating systems.
.TP 5
--use-gl
.br
Enables OpenGL support.
.TP 5
--use-glut
.br
Enables GLUT support.
.TP 5
--use-images
.br
Enables image file support.
.TP 5
--version
.br
Displays the current FLTK version number, e.g. "1.1.0".
.SH SEE ALSO
fluid(1), fltk(3)
.br
FLTK Programming Manual
.br
FLTK Web Site, http://www.fltk.org/
.SH AUTHORS
Bill Spitzak and others.