Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
132b1abd
Commit
132b1abd
authored
Jan 02, 2015
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made cmake not use the installed libjpeg on apple systems because it's broken
on some newer OS X installs.
parent
01f030dd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
CMakeLists.txt
dlib/CMakeLists.txt
+3
-2
No files found.
dlib/CMakeLists.txt
View file @
132b1abd
...
@@ -271,10 +271,11 @@ if (NOT TARGET dlib)
...
@@ -271,10 +271,11 @@ if (NOT TARGET dlib)
# try to find libjpeg
# try to find libjpeg
find_package
(
JPEG QUIET
)
find_package
(
JPEG QUIET
)
# Make sure there isn't something wrong with the version of libjpeg
# Make sure there isn't something wrong with the version of libjpeg
# installed on this system.
# installed on this system. Also don't use the installed libjpeg
# if this is an APPLE system because apparently it's broken (as of 2015/01/01).
set
(
CMAKE_REQUIRED_LIBRARIES
${
JPEG_LIBRARY
}
)
set
(
CMAKE_REQUIRED_LIBRARIES
${
JPEG_LIBRARY
}
)
CHECK_FUNCTION_EXISTS
(
jpeg_read_header LIBJPEG_IS_GOOD
)
CHECK_FUNCTION_EXISTS
(
jpeg_read_header LIBJPEG_IS_GOOD
)
if
(
JPEG_FOUND AND LIBJPEG_IS_GOOD
)
if
(
JPEG_FOUND AND LIBJPEG_IS_GOOD
AND NOT APPLE
)
include_directories
(
${
JPEG_INCLUDE_DIR
}
)
include_directories
(
${
JPEG_INCLUDE_DIR
}
)
set
(
dlib_needed_libraries
${
dlib_needed_libraries
}
${
JPEG_LIBRARY
}
)
set
(
dlib_needed_libraries
${
dlib_needed_libraries
}
${
JPEG_LIBRARY
}
)
else
()
else
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment