mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 15:30:40 +00:00
15 lines
203 B
CMake
15 lines
203 B
CMake
#
|
|
# Find the native JPEG includes and library
|
|
#
|
|
|
|
|
|
FIND_PATH(NATIVE_JPEG_INCLUDE_PATH jpeglib.h
|
|
/usr/local/include
|
|
/usr/include
|
|
)
|
|
|
|
FIND_LIBRARY(NATIVE_JPEG_LIB_PATH jpeg
|
|
PATHS /usr/lib /usr/local/lib
|
|
)
|
|
|