Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f2868add
Commit
f2868add
authored
Aug 26, 2015
by
Davis King
Browse files
Improved finding of X11 on mac os
parent
d96711ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
dlib/CMakeLists.txt
dlib/CMakeLists.txt
+5
-2
No files found.
dlib/CMakeLists.txt
View file @
f2868add
...
@@ -145,10 +145,13 @@ if (NOT TARGET dlib)
...
@@ -145,10 +145,13 @@ if (NOT TARGET dlib)
if
(
NOT DLIB_NO_GUI_SUPPORT
)
if
(
NOT DLIB_NO_GUI_SUPPORT
)
find_library
(
xlib X11
)
find_library
(
xlib X11
)
# make sure X11 is in the include path
# Make sure X11 is in the include path. Note that we look for
find_path
(
xlib_path Xlib.h
# Xlocale.h rather than Xlib.h because it avoids finding a partial
# copy of the X11 headers on systems with anaconda installed.
find_path
(
xlib_path Xlocale.h
PATHS
PATHS
/Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include
/Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include
/opt/local/include
PATH_SUFFIXES X11
PATH_SUFFIXES X11
)
)
if
(
xlib AND xlib_path
)
if
(
xlib AND xlib_path
)
...
...
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