Module to search the path for FLTK library ( http://www.fltk.org )
This commit is contained in:
parent
0829faa9e1
commit
5d133eeebc
|
@ -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
|
||||
)
|
||||
|
Loading…
Reference in New Issue