summaryrefslogtreecommitdiff
path: root/documentation/fltk-config.man
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-01-06 13:40:32 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-01-06 13:40:32 +0000
commit2d6a98560e1f3f027180be34cfc625eabfb32f05 (patch)
treea48208d7420cfcdf1f8fa614b9fa66c8002163a0 /documentation/fltk-config.man
parentde9f6763537e7152279a4f5a19a70437e7a70940 (diff)
Doco and dist file updates.
Add fltk-config man page. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1911 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/fltk-config.man')
-rw-r--r--documentation/fltk-config.man83
1 files changed, 83 insertions, 0 deletions
diff --git a/documentation/fltk-config.man b/documentation/fltk-config.man
new file mode 100644
index 000000000..9c1fb7f41
--- /dev/null
+++ b/documentation/fltk-config.man
@@ -0,0 +1,83 @@
+.TH fltk-config 1 "Fast Light Tool Kit" "6 January 2002"
+.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 ]
+[ --cflags ] [ --cxxflags ] [ --ldflags ] [ --ldstaticflags ] [ --libs ]
+[ --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
+--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
+--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.