2020-03-21 20:00:20 +03:00
|
|
|
|
README.Windows.txt - Building FLTK under Microsoft Windows
|
|
|
|
|
------------------------------------------------------------
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
2021-12-19 00:42:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
|
|
|
|
*** CAUTION: This file is outdated. This needs a major rework! ***
|
|
|
|
|
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-26 14:31:44 +04:00
|
|
|
|
CONTENTS
|
2010-12-22 15:28:10 +03:00
|
|
|
|
==========
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
1 INTRODUCTION
|
|
|
|
|
|
|
|
|
|
2 HOW TO BUILD FLTK USING MinGW AND Cygwin
|
|
|
|
|
|
2010-12-20 22:48:09 +03:00
|
|
|
|
2.1 The Tools
|
|
|
|
|
2.2 Recommended Command Line Build Environment
|
|
|
|
|
2.3 Prerequisites
|
|
|
|
|
2.4 Downloading and Unpacking
|
|
|
|
|
2.5 Configuring FLTK
|
|
|
|
|
2.6 Building FLTK
|
|
|
|
|
2.7 Testing FLTK
|
|
|
|
|
2.8 Installing FLTK
|
|
|
|
|
2.9 Creating new Projects
|
2020-03-21 20:00:20 +03:00
|
|
|
|
|
|
|
|
|
3 HOW TO BUILD FLTK USING MICROSOFT VISUAL STUDIO
|
|
|
|
|
|
2010-10-26 14:31:44 +04:00
|
|
|
|
3.1 Prerequisites
|
|
|
|
|
3.2 Downloading and Unpacking
|
|
|
|
|
3.3 Configuring FLTK
|
|
|
|
|
3.4 Building FLTK
|
|
|
|
|
3.5 Testing FLTK
|
|
|
|
|
3.6 Installing FLTK
|
|
|
|
|
3.7 Creating new Projects
|
2020-03-21 20:00:20 +03:00
|
|
|
|
|
|
|
|
|
4 FREQUENTLY ASKED QUESTIONS
|
|
|
|
|
|
|
|
|
|
5 LINKS
|
|
|
|
|
|
|
|
|
|
6 DOCUMENT HISTORY
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 INTRODUCTION
|
|
|
|
|
==================
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
FLTK 1.3 and later is officially supported on Windows (2000,) 2003,
|
|
|
|
|
XP, and later. Older Windows versions are not officially supported,
|
|
|
|
|
but may still work. The main reason is that the OS version needs
|
2016-10-17 00:04:24 +03:00
|
|
|
|
to support UTF-8. FLTK 1.3 is known to work on Windows Vista, Windows 7,
|
|
|
|
|
Windows 8/8.1, and Windows 10.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-12-20 22:48:09 +03:00
|
|
|
|
FLTK currently supports the following development
|
|
|
|
|
environments on the Windows platform:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
- Free Microsoft "Visual C++ 2008 Express" or later or "Visual Studio
|
|
|
|
|
Community 2013" or later. The Visual Studio project files must be
|
|
|
|
|
generated using CMake. Visual Studio 2017 includes CMake support:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
"Visual Studio 2017 introduces built-in support for handling CMake
|
|
|
|
|
projects. This makes it a lot simpler to develop C++ projects built
|
|
|
|
|
with CMake without the need to generate VS projects and solutions
|
|
|
|
|
from the command line. This post gives you an overview of the CMake
|
|
|
|
|
support, how to easily get started and stay productive in Visual Studio."
|
|
|
|
|
|
|
|
|
|
Citation from:
|
2020-03-21 20:00:20 +03:00
|
|
|
|
https://devblogs.microsoft.com/cppblog/cmake-support-in-visual-studio/
|
2017-07-05 20:15:16 +03:00
|
|
|
|
|
|
|
|
|
As of this writing (07/2017) the FLTK team did not yet test and
|
|
|
|
|
verify the functionality of Microsoft's included CMake features.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
- GNU toolsets (Cygwin or MinGW) hosted on Windows.
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
CAUTION: Libraries built by any one of these environments can not be mixed
|
2010-12-20 22:48:09 +03:00
|
|
|
|
with object files from any other environment!
|
|
|
|
|
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
2 HOW TO BUILD FLTK USING MinGW AND Cygwin
|
|
|
|
|
==============================================
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
This chapter of this document gives a brief overview of
|
|
|
|
|
compiling and using FLTK with the Cygwin and MinGW compiler
|
|
|
|
|
toolkits. Both toolkits provide a build environment based
|
|
|
|
|
around the GNU C/C++ compiler. Further information is
|
2020-03-21 20:00:20 +03:00
|
|
|
|
available from the FLTK website at https://www.fltk.org, such
|
|
|
|
|
as this Howto note: https://www.fltk.org/articles.php?L598
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
The Cygwin build environment supplies a library (the Cygwin
|
|
|
|
|
DLL) that is primarily intended to provide a number of
|
|
|
|
|
Unix-like POSIX facilities for programs being ported to the
|
|
|
|
|
Windows environment (Win32 or WinNT). Cygwin also supplies
|
|
|
|
|
a very Unix-like build environment for Windows, including
|
|
|
|
|
the "BASH" Bourne-compatible shell and all of the standard
|
|
|
|
|
Unix file utilities (ls, cat, grep, etc.).
|
|
|
|
|
|
|
|
|
|
Cygwin is developed by Cygnus (now part of RedHat, Inc).
|
2017-07-05 20:15:16 +03:00
|
|
|
|
Although provided for free download under the GPL, distributing
|
|
|
|
|
programs that require the Cygwin DLL under a license other than
|
|
|
|
|
the GPL requires a commercial license for the Cygwin DLL.
|
|
|
|
|
|
|
|
|
|
Native Windows programs that do not require the Cygwin DLL
|
|
|
|
|
(cross-compiled and linked with the MinGW gcc/g++ cross compilers
|
|
|
|
|
supplied with Cygwin) may be released under any license freely.
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
Currently you would have to install mingw64-i686-gcc-g++ for
|
|
|
|
|
32-bit Windows applications (despite its name!), and/or
|
|
|
|
|
mingw64-x86_64-gcc-g++ for 64-bit applications. You may also
|
|
|
|
|
need to install the corresponding '-headers' packages as well.
|
2020-03-21 20:00:20 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
Currently these tools support gcc 4.5 or newer. The setup for
|
|
|
|
|
FLTK is somewhat more complicated because you must configure
|
|
|
|
|
this as a cross compiler, but it works well.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
The MinGW distribution (Minimalist GNU for Windows) provides
|
|
|
|
|
a similar toolset but geared solely towards native Windows
|
|
|
|
|
development without the Unix-like POSIX library. The lack of
|
|
|
|
|
any libraries under the GPL or any other restrictive license
|
|
|
|
|
means that programs built with the MinGW environment may
|
|
|
|
|
always be released under any license freely. MinGW also
|
|
|
|
|
supplies a Unix-like build environment for Windows,
|
|
|
|
|
including MSYS (a Bourne-compatible shell) and the standard
|
|
|
|
|
Unix file utilities (ls, cat, grep, etc.)
|
|
|
|
|
|
|
|
|
|
If you are not familiar with these GNU-like toolkits please
|
|
|
|
|
refer to the links section later in this note. In particular,
|
|
|
|
|
check out their license conditions carefully before use.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The Tools
|
|
|
|
|
-----------
|
|
|
|
|
|
|
|
|
|
There are currently three main configurations supported by
|
|
|
|
|
FLTK with the GNU tools:
|
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
1. Cygwin: Built using the Cygwin toolset and using the Unix-like
|
|
|
|
|
POSIX compatibility layer provided by the Cygwin DLL.
|
|
|
|
|
License: GPL or non-free commercial license (ask Redhat).
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
2. Cygwin using the MinGW cross compiler suite: Built using
|
|
|
|
|
the Cygwin tools but not using the Cygwin DLL.
|
|
|
|
|
License: freely distributable on all Windows systems.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
3. MinGW: Built using the MinGW utilities, compiler and tools. This
|
|
|
|
|
is, in many aspects, analogous to (2.). This is the recommended
|
2010-12-22 15:28:10 +03:00
|
|
|
|
one if you want to build native Windows programs only.
|
2017-07-05 20:15:16 +03:00
|
|
|
|
License: freely distributable on all Windows systems.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Recommended Command Line Build Environment
|
|
|
|
|
--------------------------------------------
|
|
|
|
|
|
|
|
|
|
Our recommendation is to:
|
|
|
|
|
|
|
|
|
|
1. Get the current Cygwin toolset.
|
|
|
|
|
|
|
|
|
|
This can either produce executables that do or do not
|
2017-07-05 20:15:16 +03:00
|
|
|
|
rely on the Cygwin DLL (check licensing) at your choice.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
2. Get the latest MinGW toolset. It is recommended that you
|
|
|
|
|
also get the MSYS shell and the msysDTK developer toolset.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
This will only produce normal Windows native executables
|
|
|
|
|
without any Unix or POSIX compatibility layer.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
See the links section below for more information.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
Either option can generate Windows native executables and option 1 can
|
|
|
|
|
provide a Unix-like POSIX portability layer that is reliant on a GPLed library.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
See the later sections for detailed information about using
|
|
|
|
|
one of these configurations.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Prerequisites
|
|
|
|
|
---------------
|
|
|
|
|
|
|
|
|
|
In order to build FLTK from the command line, you need to install the MinGW
|
2010-12-04 15:03:08 +03:00
|
|
|
|
environment from www.mingw.org. The graphical installer "mingw-get-inst" can
|
|
|
|
|
be downloaded here for free:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
http://www.mingw.org/wiki/Getting_Started
|
|
|
|
|
|
|
|
|
|
Launch the installer and follow the instructions. In the "Select Components"
|
2010-12-04 15:03:08 +03:00
|
|
|
|
dialog, add "C++ Compiler", "MSYS Basic System", and "MinGW Developer Toolkit".
|
2010-10-26 14:31:44 +04:00
|
|
|
|
Wait for the installer to finish.
|
|
|
|
|
|
|
|
|
|
After downloading and installing, you need to launch the MinGW Shell through
|
|
|
|
|
the Start menu.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Downloading and Unpacking
|
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
|
|
Download FLTK from here:
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
https://www.fltk.org/software.php
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
into your home folder. The default location as seen from MSWindows is similar
|
|
|
|
|
to
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
C:\MinGW\msys\1.0\home\matt\
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
If you are familiar with "git" and like to stay current with your
|
|
|
|
|
version, you will find the git access parameters at the bottom of
|
2010-12-04 15:03:08 +03:00
|
|
|
|
that page. Unpack FLTK into a convenient location. I like to have everything
|
|
|
|
|
in my dev directory:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
cd
|
|
|
|
|
mkdir dev
|
|
|
|
|
cd dev
|
|
|
|
|
tar xvfz fltk-1.3.xxxx.tar.gz
|
|
|
|
|
cd fltk-1.3.xxxx
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
Configuring FLTK
|
|
|
|
|
------------------
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
If you got FLTK via git then you need one extra step. Otherwise skip
|
2013-12-13 14:19:54 +04:00
|
|
|
|
over this part. Stay in your FLTK source-code directory and type the
|
|
|
|
|
following:
|
|
|
|
|
|
2021-11-24 16:57:41 +03:00
|
|
|
|
autoconf
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
Now configure your FLTK installation:
|
|
|
|
|
|
|
|
|
|
./configure
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
2021-11-24 16:57:41 +03:00
|
|
|
|
Hint: Instead of executing `autoconf` and `configure` followed by `make`
|
|
|
|
|
to build FLTK (see next section) you can also run `make` directly which
|
|
|
|
|
will create and execute the 'configure' script with default parameters
|
|
|
|
|
and build FLTK with the default configuration.
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
ADVANCED: type "./configure --help" to get a complete list of optional
|
2010-12-04 15:03:08 +03:00
|
|
|
|
configuration parameters. These should be pretty self-explanatory. Some
|
2010-12-22 15:28:10 +03:00
|
|
|
|
more details can be found in README.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
:END_ADVANCED
|
|
|
|
|
|
|
|
|
|
The configuration script will check your machine for the required resources
|
2010-12-22 15:28:10 +03:00
|
|
|
|
which should all have been part of your MinGW installation. Review the
|
2010-10-26 14:31:44 +04:00
|
|
|
|
Configuration Summary, maybe take some notes.
|
|
|
|
|
|
2010-11-28 00:39:47 +03:00
|
|
|
|
ADVANCED: some versions of MinGW/Msys are broken and complain about a missing
|
|
|
|
|
--enable-auto-import. The solution is to upgrade to the current release. If
|
2010-12-22 15:28:10 +03:00
|
|
|
|
that is not possible, you can include the --enable-auto-import flag when
|
2010-11-28 00:39:47 +03:00
|
|
|
|
linking:
|
|
|
|
|
./configure <config flags> LDFLAGS=-Wl,--enable-auto-import
|
|
|
|
|
:END_ADVANCED
|
|
|
|
|
|
2016-10-17 00:04:24 +03:00
|
|
|
|
|
2014-09-19 16:19:50 +04:00
|
|
|
|
Known Problems:
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
There is a known incompatibility with some Windows git tools that
|
2014-09-19 16:19:50 +04:00
|
|
|
|
may not set the correct line endings for autoconf. If you get strange
|
|
|
|
|
error messages when running ./configure or make, you may need to convert
|
|
|
|
|
configh.in to "Unix line endings" (LF-only). These error messages are
|
|
|
|
|
unspecific, e.g. compilation errors like:
|
|
|
|
|
|
|
|
|
|
error: 'U32' does not name a type
|
|
|
|
|
error: 'bmibuffer' was not declared in this scope
|
|
|
|
|
|
|
|
|
|
You can fix the line endings with the MinGW/msys tool 'unix2dos' (u2d)
|
|
|
|
|
or with your favorite editor, if it allows to change the line endings,
|
|
|
|
|
then run autoconf and ./configure again.
|
2020-03-21 20:00:20 +03:00
|
|
|
|
|
|
|
|
|
We don't know if this issue is still relevant with current Git tools.
|
|
|
|
|
It has been reported when we were still using Subversion (svn).
|
|
|
|
|
|
|
|
|
|
For further information see this bug report (regarding svn)
|
|
|
|
|
|
|
|
|
|
https://www.fltk.org/newsgroups.php?gfltk.bugs+v:10197
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2016-10-17 00:04:24 +03:00
|
|
|
|
|
2010-10-26 14:31:44 +04:00
|
|
|
|
Building FLTK
|
|
|
|
|
---------------
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
Now this is easy. Stay in your FLTK source-code directory and type:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
The entire FLTK toolkit including many test programs will be built for you.
|
|
|
|
|
No warnings should appear.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Testing FLTK
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
After a successful build, you can test FLTK's capabilities:
|
|
|
|
|
|
|
|
|
|
test/demo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Installing FLTK
|
|
|
|
|
-----------------
|
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
If you did not change any of the configuration settings, FLTK will be
|
|
|
|
|
installed in "/usr/local/include" and "/usr/local/lib" by typing
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
make install
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
|
|
|
|
It is possible to install FLTK in user space by changing the installation path
|
2010-10-26 14:31:44 +04:00
|
|
|
|
to a location within the user account by adding the "--prefix=PREFIX" parameter
|
|
|
|
|
to the "./configure" command.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Creating new Projects
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
FLTK provides a neat script named "fltk-config" that can provide all the flags
|
2010-10-26 14:31:44 +04:00
|
|
|
|
needed to build FLTK applications using the same flags that were used to build
|
|
|
|
|
the library itself. Running "fltk-config" without arguments will print a list
|
2010-12-04 15:03:08 +03:00
|
|
|
|
of options. The easiest call to compile an FLTK application from a single
|
2010-12-22 15:28:10 +03:00
|
|
|
|
source file is:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
fltk-config --compile myProgram.cxx
|
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
"fltk-config" and "fluid" will be installed in "/usr/local/bin/" by default.
|
|
|
|
|
I recommend that you add it to the command search path.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
3 HOW TO BUILD FLTK USING MICROSOFT VISUAL STUDIO
|
|
|
|
|
=====================================================
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Prerequisites
|
|
|
|
|
---------------
|
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
In order to build FLTK from within Visual Studio, you need to install the
|
|
|
|
|
Visual C++ developer environment from the Microsoft web site. The "Express"
|
|
|
|
|
or "Community" edition is free of charge and sufficient to develop FLTK
|
|
|
|
|
applications:
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
https://visualstudio.microsoft.com/vs/express/
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
If you intend to use an older (maybe commercial) version you need at least
|
|
|
|
|
a version that is supported by the version of CMake you are using to generate
|
|
|
|
|
the project files. You should make sure that all available service packs are
|
|
|
|
|
installed or building FLTK may fail.
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
As of this writing (07/2017) the FLTK team recommends at least Visual
|
|
|
|
|
Studio 2008 with current service packs. Visual Studio 2008, 2010, 2013,
|
2020-03-21 20:00:20 +03:00
|
|
|
|
2015, and 2017 are known to work with FLTK 1.4.0 (Git: 07/2017).
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
You may also need to install CMake (cmake-gui) from:
|
2017-07-05 20:15:16 +03:00
|
|
|
|
|
|
|
|
|
https://cmake.org/download/
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
Visual Studio 2017 (and later) has internal CMake support (so you may not
|
|
|
|
|
need to install CMake separately).
|
|
|
|
|
There is an option to "open a folder" with a CMakeLists.txt file - in our
|
|
|
|
|
case the FLTK root folder. You may want to try this.
|
|
|
|
|
|
|
|
|
|
Note that this has not yet been tested thoroughly by the FLTK team.
|
2017-07-05 20:15:16 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Downloading and Unpacking FLTK
|
|
|
|
|
--------------------------------
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
Download FLTK from here:
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
https://www.fltk.org/software.php
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
If you are familiar with "git" and like to stay current with your
|
|
|
|
|
version, you will find the git access parameters at the bottom of
|
2010-12-04 15:03:08 +03:00
|
|
|
|
that page.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
Unpack FLTK by using an appropriate unpacker and copy the new folder into a
|
|
|
|
|
convenient location. I have set up a "dev" folder in my home folder for all
|
|
|
|
|
my projects.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Configuring FLTK
|
|
|
|
|
------------------
|
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
Note: Configuration with Visual Studio 2017's internal CMake support is
|
|
|
|
|
not yet included here. You may try yourself...
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
Please refer to README.CMake.txt for how to configure FLTK with CMake.
|
|
|
|
|
|
|
|
|
|
Once you have followed the instructions you should have created a new
|
|
|
|
|
build directory with the Visual Studio Solution (project files) for FLTK.
|
|
|
|
|
|
|
|
|
|
Launch Visual Studio and open the project file (FLTK.sln) or double-click
|
|
|
|
|
on FLTK.sln in the Windows Explorer.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
Choose "Debug" or "Release" mode from the "Solution Configurations" menu.
|
2010-12-22 15:28:10 +03:00
|
|
|
|
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
Building FLTK
|
|
|
|
|
---------------
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
Use the context menu of the "demo" project to "Set as StartUp Project". Then
|
|
|
|
|
select "Build Solution" from the "Build" menu or press F7 to build all
|
2010-10-26 14:31:44 +04:00
|
|
|
|
libraries.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Testing FLTK
|
|
|
|
|
--------------
|
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
Select "Start Debugging" from the "Debug" menu or just press F5 to run the
|
|
|
|
|
Demo program. Use "Demo" to explore all test programs.
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Installing FLTK
|
|
|
|
|
-----------------
|
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
********************************************************************************
|
|
|
|
|
The information in this chapter is NO LONGER RECOMMENDED by the FLTK team.
|
|
|
|
|
********************************************************************************
|
|
|
|
|
|
2010-10-26 14:31:44 +04:00
|
|
|
|
The default location for VisualC 2008 libraries and headers is here:
|
|
|
|
|
|
2010-10-27 23:39:59 +04:00
|
|
|
|
C:\Program Files\Microsoft Visual Studio 9.0\VC\
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
It is possible to move the FLTK libraries, headers, and Fluid into the
|
2010-10-26 14:31:44 +04:00
|
|
|
|
respective subdirectories, so that they are available for future development
|
|
|
|
|
without adding link and include paths to the solution.
|
|
|
|
|
|
|
|
|
|
copy the entire FL directory into the include path
|
2010-12-04 15:03:08 +03:00
|
|
|
|
|
2021-12-19 00:42:30 +03:00
|
|
|
|
add <build_dir>/FL/fl_config.h
|
2015-07-12 22:23:55 +03:00
|
|
|
|
|
2021-12-19 00:42:30 +03:00
|
|
|
|
copy all .lib files from the fltk build directory to the VC lib directory
|
2010-12-04 15:03:08 +03:00
|
|
|
|
|
2010-10-27 23:39:59 +04:00
|
|
|
|
copy fluid.exe in the fluid directory to the bin directory
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-12-04 15:03:08 +03:00
|
|
|
|
I highly discourage using dll's (dynamically linking libraries) on MSWindows
|
2010-12-22 15:28:10 +03:00
|
|
|
|
because they will require an installation process and likely cause version
|
2010-10-26 14:31:44 +04:00
|
|
|
|
conflicts. Use the static .lib libraries instead.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Creating new Projects
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2017-07-05 20:15:16 +03:00
|
|
|
|
********************************************************************************
|
|
|
|
|
The information in this chapter is NO LONGER RECOMMENDED by the FLTK team.
|
|
|
|
|
********************************************************************************
|
|
|
|
|
|
|
|
|
|
This chapter assumes that libraries and headers were copied into
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-10-27 23:39:59 +04:00
|
|
|
|
C:\Program Files\Microsoft Visual Studio 9.0\VC\
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2010-10-27 23:39:59 +04:00
|
|
|
|
Create a new project of type "General", "Empty Project" and add a simple "C++"
|
|
|
|
|
file to it. The FLTK "hello" source code is a good base.
|
2010-10-27 00:41:49 +04:00
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
Now open the Project Properties dialog and add "Comctl32.lib" and all the FLTK
|
2010-10-27 23:39:59 +04:00
|
|
|
|
libraries that you want to use (at least "fltk.lib") to Additional Dependencies
|
2018-02-09 17:39:42 +03:00
|
|
|
|
(Configuration Properties > Linker > Additional Dependencies).
|
2010-10-27 00:41:49 +04:00
|
|
|
|
|
2010-10-27 23:39:59 +04:00
|
|
|
|
Compile and run your test program with F5.
|
2010-10-27 00:41:49 +04:00
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
You can also include .fl resources: add a new Header file to your project, but
|
2010-10-27 00:41:49 +04:00
|
|
|
|
let the name end in .fl. Right-click and select "Open with...". Add "fluid.exe"
|
|
|
|
|
from the "bin" directory and set it as the default editor.
|
|
|
|
|
|
|
|
|
|
To automatically compile .fl files, open the Properties editor and set the
|
|
|
|
|
Custom Build Steps to:
|
|
|
|
|
|
|
|
|
|
Command Line: fluid.exe -c $(InputPath)
|
|
|
|
|
Description: Compiling Fluid .fl file
|
|
|
|
|
Outputs: $(InputDir)$(InputName).cxx; $(InputDir)$(InputName).h
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
Now add the generated .cxx file to your project as well. Whenever the .fl file
|
2010-10-27 00:41:49 +04:00
|
|
|
|
is changed, the corresponding .cxx file will be recompiled.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
4 FREQUENTLY ASKED QUESTIONS
|
|
|
|
|
================================
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
|
2010-12-22 15:28:10 +03:00
|
|
|
|
Why does a console window appear when I run my program?
|
2010-12-20 22:48:09 +03:00
|
|
|
|
---------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Windows has a flag that determines whether an application
|
|
|
|
|
runs in the foreground with a console or in the background
|
2014-09-19 16:19:50 +04:00
|
|
|
|
without a console.
|
2012-02-24 18:46:10 +04:00
|
|
|
|
|
|
|
|
|
If you're using gcc (i.e. MinGW or Cygwin), then use the
|
|
|
|
|
linker option "-mwindows" to make your application run in
|
|
|
|
|
the background and "-mconsole" to run in the foreground. Use
|
|
|
|
|
fltk-config --ldflags to see appropriate linker flags, or use
|
|
|
|
|
fltk-config --compile to compile a single source file.
|
|
|
|
|
|
|
|
|
|
If you're using MS VC++, then you must set the linker option
|
|
|
|
|
"/subsystem:windows" to create a "Windows" program (w/o console
|
|
|
|
|
window), or set the linker option "/subsystem:console" for a
|
|
|
|
|
console program, i.e. with a console window. These options
|
|
|
|
|
are set differently in the FLTK project files, depending on
|
|
|
|
|
whether you select a "Debug" or "Release" build.
|
|
|
|
|
|
|
|
|
|
Other compilers and build systems may have different options.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
Keep in mind that a windows application cannot send output
|
|
|
|
|
to stdout, even if you run it from an existing console
|
|
|
|
|
application.
|
|
|
|
|
(Note: A special case of this exists if running a MinGW
|
|
|
|
|
application from the command line of an MSYS shell, when an
|
|
|
|
|
application is able to write to stdout, even if compiled with
|
|
|
|
|
"-mwindows". The same applies to Cygwin.)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
How do I get OpenGL to work?
|
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
Both builds should automatically support OpenGL.
|
|
|
|
|
|
|
|
|
|
The configuration file config.h has a number of settings
|
|
|
|
|
which control compile-time compilation. One such setting is
|
|
|
|
|
"HAVE_GL". This may be set to 0 to disable Open GL operation.
|
|
|
|
|
Changing the line in config.h to
|
|
|
|
|
|
|
|
|
|
#define HAVE_GL 1
|
|
|
|
|
|
|
|
|
|
will change this to compile and link in OpenGL.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
5 LINKS
|
|
|
|
|
===========
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
The following links may be of use:
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
1. Main Cygwin homepage:
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
|
https://www.cygwin.com/
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
2. Main MinGW homepage:
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
|
http://www.mingw.org/
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
In particular look for the MinGW FAQ at this link for
|
|
|
|
|
a lot of useful MinGW-native development documentation.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
3. Check out the FLTK newsgroups at the FLTK homepage:
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
|
https://www.fltk.org/
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
Its archival search facilities are EXTREMELY useful
|
|
|
|
|
to check back through previous problems with this
|
|
|
|
|
sort of configuration before posting new questions.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
4. GNU Compiler Collection (GCC) compiler homepage:
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
|
https://gcc.gnu.org/
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
5. OpenGL page - for OpenGL and GLUT libs
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
|
https://www.opengl.org/
|
2017-07-05 20:15:16 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
6. CMake homepage:
|
2017-07-05 20:15:16 +03:00
|
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
|
https://cmake.org/
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
Note: all links in this document have been checked on Mar 21, 2020.
|
|
|
|
|
We can't guarantee that these links are still valid any time later.
|
2010-12-20 22:48:09 +03:00
|
|
|
|
|
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
6 DOCUMENT HISTORY
|
|
|
|
|
======================
|
2010-10-26 14:31:44 +04:00
|
|
|
|
|
2020-03-21 20:00:20 +03:00
|
|
|
|
The document history is no longer maintained in this document.
|
|
|
|
|
Please consult the Git history instead.
|
|
|
|
|
Examples:
|
|
|
|
|
git log -- README.Windows.txt
|
|
|
|
|
git log -- README.MSWindows.txt (previous, renamed version)
|
|
|
|
|
gitk -- README.Windows.txt
|