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
655b7f7f
Commit
655b7f7f
authored
Feb 28, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switched cmake link names to dlib::dlib
parent
a62cf03c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
add_python_module
dlib/cmake_utils/add_python_module
+1
-1
CMakeLists.txt
tools/htmlify/CMakeLists.txt
+1
-1
CMakeLists.txt
tools/imglab/CMakeLists.txt
+1
-1
No files found.
dlib/cmake_utils/add_python_module
View file @
655b7f7f
...
@@ -147,7 +147,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/../cmake)
...
@@ -147,7 +147,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/../cmake)
# output name is set to what the user asked for (i.e. no _).
# output name is set to what the user asked for (i.e. no _).
macro(add_python_module module_name module_sources )
macro(add_python_module module_name module_sources )
ADD_LIBRARY(${module_name}_ SHARED ${module_sources} ${ARGN} )
ADD_LIBRARY(${module_name}_ SHARED ${module_sources} ${ARGN} )
TARGET_LINK_LIBRARIES(${module_name}_ ${Boost_LIBRARIES} ${PYTHON_LIBRARIES} dlib)
TARGET_LINK_LIBRARIES(${module_name}_ ${Boost_LIBRARIES} ${PYTHON_LIBRARIES} dlib
::dlib
)
if(WIN32 AND NOT CYGWIN)
if(WIN32 AND NOT CYGWIN)
SET_TARGET_PROPERTIES( ${module_name}_
SET_TARGET_PROPERTIES( ${module_name}_
PROPERTIES
PROPERTIES
...
...
tools/htmlify/CMakeLists.txt
View file @
655b7f7f
...
@@ -19,7 +19,7 @@ ADD_EXECUTABLE(${target_name}
...
@@ -19,7 +19,7 @@ ADD_EXECUTABLE(${target_name}
# Tell cmake to link our target executable to dlib.
# Tell cmake to link our target executable to dlib.
include
(
../../dlib/cmake
)
include
(
../../dlib/cmake
)
TARGET_LINK_LIBRARIES
(
${
target_name
}
dlib
)
TARGET_LINK_LIBRARIES
(
${
target_name
}
dlib
::dlib
)
...
...
tools/imglab/CMakeLists.txt
View file @
655b7f7f
...
@@ -30,7 +30,7 @@ ADD_EXECUTABLE(${target_name}
...
@@ -30,7 +30,7 @@ ADD_EXECUTABLE(${target_name}
# Tell cmake to link our target executable to dlib.
# Tell cmake to link our target executable to dlib.
TARGET_LINK_LIBRARIES
(
${
target_name
}
dlib
)
TARGET_LINK_LIBRARIES
(
${
target_name
}
dlib
::dlib
)
INSTALL
(
TARGETS
${
target_name
}
INSTALL
(
TARGETS
${
target_name
}
...
...
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