diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-03-20 17:23:21 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-03-20 17:24:12 +0100 |
| commit | 2001132f4a1ab2ad02f31c4a7c4cf9a5d803ed54 (patch) | |
| tree | 5eb6df2e40f3dd2530d3bd0fa87b831e9d82373f /makeinclude.in | |
| parent | 46406d1d2144b8515782e346bdbf241533b2e75a (diff) | |
Add configure option to build tests only on request (#940)
Option: ./configure --disable-test build test programs (default=yes)
Thanks for the patch(es) to @michaelbaeuerle.
I added `make test` to be able to build the test programs from the
FLTK root directory if FLTK was configured with --disable-test.
Diffstat (limited to 'makeinclude.in')
| -rw-r--r-- | makeinclude.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/makeinclude.in b/makeinclude.in index 3057095a4..b1aee3a36 100644 --- a/makeinclude.in +++ b/makeinclude.in @@ -89,6 +89,9 @@ GLLIBBASENAME = @GLLIBBASENAME@ IMGLIBBASENAME = @IMGLIBBASENAME@ CAIROLIBBASENAME= @CAIROLIBBASENAME@ +# Test programs (optional, --disable-test): +TESTDIR = @TESTDIR@ + # libraries to link with: AUDIOLIBS = @AUDIOLIBS@ CAIROLIBS = @CAIROLIBS@ |
