Module to search the path for FLTK library ( http://www.fltk.org )

This commit is contained in:
Luis Ibanez 2001-05-08 10:16:06 -04:00
parent 0829faa9e1
commit 5d133eeebc
1 changed files with 19 additions and 0 deletions

19
Modules/FindFLTK.cmake Normal file
View File

@ -0,0 +1,19 @@
#
# Find the native FLTK includes and library
#
FIND_PATH(FLTK_INCLUDE_PATH FL/FL.H
/usr/local/include
/usr/include
/usr/local/fltk
H:/usr/local/fltk
)
FIND_LIBRARY(FLTK_LIB_PATH fltk
/usr/lib
/usr/local/lib
/usr/local/fltk/lib
H:/usr/local/fltk/lib
)