BUG: Fixes #8376: FindFLTK fails because include file can be FL/Fl.H and CMake

only looks for FL/Fl.h.  Verified: all FLTK header files in 1.1.9 are .H ...
how bizarre.
This commit is contained in:
Philip Lowman 2009-01-21 22:43:22 -05:00
parent f1e74ae018
commit 570d6b4aa9
1 changed files with 3 additions and 1 deletions

View File

@ -177,7 +177,9 @@ ENDIF(NOT FLTK_DIR)
/usr/X11R6/include
)
FIND_PATH(FLTK_INCLUDE_DIR FL/Fl.h ${FLTK_INCLUDE_SEARCH_PATH})
FIND_PATH(FLTK_INCLUDE_DIR
NAMES FL/Fl.h FL/Fl.H # fltk 1.1.9 has Fl.H (#8376)
PATHS ${FLTK_INCLUDE_SEARCH_PATH})
SET(FLTK_LIBRARY_SEARCH_PATH ${FLTK_LIBRARY_SEARCH_PATH}
/usr/local/fltk/lib