repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FIX: GLU and GLUT flags for Mac OSX
[cmake.git]
/
Modules
/
FindJPEG.cmake
blob
a72aa515f57371828e3c2738b4db4455384b3feb
1
#
2
# Find the native JPEG includes and library
3
#
4
5
6
FIND_PATH(NATIVE_JPEG_INCLUDE_PATH jpeglib.h
7
/usr/local/include
8
/usr/include
9
)
10
11
FIND_LIBRARY(NATIVE_JPEG_LIB_PATH jpeg
12
PATHS /usr/lib /usr/local/lib
13
)
14