mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-26 18:58:34 -06:00
Module to search the path for FLTK library ( http://www.fltk.org )
This commit is contained in:
19
Modules/FindFLTK.cmake
Normal file
19
Modules/FindFLTK.cmake
Normal 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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user