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
1a1ec688
Commit
1a1ec688
authored
Jun 29, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed errors on OS X for some kinds of builds.
parent
3b794540
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
CMakeLists.txt
dlib/CMakeLists.txt
+7
-0
No files found.
dlib/CMakeLists.txt
View file @
1a1ec688
...
...
@@ -600,6 +600,12 @@ if (NOT TARGET dlib)
# Grab all the -D flags from CMAKE_CXX_FLAGS so we can pass them
# to nvcc.
string
(
REGEX MATCHALL
"-D[^ ]*"
FLAGS_FOR_NVCC
"
${
CMAKE_CXX_FLAGS
}
"
)
# Check if we are being built as part of a pybind11 module.
if
(
COMMAND pybind11_add_module
)
# Don't export unnecessary symbols.
list
(
APPEND FLAGS_FOR_NVCC
"-Xcompiler=-fvisibility=hidden"
)
endif
()
endif
()
...
...
@@ -884,6 +890,7 @@ endif()
if
(
COMMAND pybind11_add_module
)
# Don't export unnecessary symbols.
set_target_properties
(
dlib PROPERTIES CXX_VISIBILITY_PRESET
"hidden"
)
set_target_properties
(
dlib PROPERTIES CUDA_VISIBILITY_PRESET
"hidden"
)
endif
()
add_library
(
dlib::dlib ALIAS dlib
)
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