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
df0f62d4
Commit
df0f62d4
authored
Nov 10, 2017
by
Davis King
Browse files
merged
parents
6137540b
fef4a365
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dlib/cmake_utils/dlibConfig.cmake.in
dlib/cmake_utils/dlibConfig.cmake.in
+2
-3
dlib/test/dnn.cpp
dlib/test/dnn.cpp
+1
-0
No files found.
dlib/cmake_utils/dlibConfig.cmake.in
View file @
df0f62d4
...
@@ -28,9 +28,8 @@ if(NOT TARGET dlib-shared AND NOT dlib_BINARY_DIR)
...
@@ -28,9 +28,8 @@ if(NOT TARGET dlib-shared AND NOT dlib_BINARY_DIR)
include("${dlib_CMAKE_DIR}/dlib.cmake")
include("${dlib_CMAKE_DIR}/dlib.cmake")
endif()
endif()
find_library(dlib_LIBRARIES dlib HINTS "@CMAKE_INSTALL_FULL_LIBDIR@")
set(dlib_LIBRARIES dlib::dlib)
set(dlib_LIBRARIES ${dlib_LIBRARIES} "@dlib_needed_libraries@")
set(dlib_LIBS dlib::dlib)
set(dlib_LIBS ${dlib_LIBRARIES} "@dlib_needed_libraries@")
set(dlib_INCLUDE_DIRS "@CMAKE_INSTALL_FULL_INCLUDEDIR@" "@dlib_needed_includes@")
set(dlib_INCLUDE_DIRS "@CMAKE_INSTALL_FULL_INCLUDEDIR@" "@dlib_needed_includes@")
mark_as_advanced(dlib_LIBRARIES)
mark_as_advanced(dlib_LIBRARIES)
...
...
dlib/test/dnn.cpp
View file @
df0f62d4
...
@@ -2120,6 +2120,7 @@ namespace
...
@@ -2120,6 +2120,7 @@ namespace
void
test_simple_linear_regression_with_mult_prev
()
void
test_simple_linear_regression_with_mult_prev
()
{
{
srand
(
1234
);
print_spinner
();
print_spinner
();
const
int
num_samples
=
1000
;
const
int
num_samples
=
1000
;
::
std
::
vector
<
matrix
<
double
>>
x
(
num_samples
);
::
std
::
vector
<
matrix
<
double
>>
x
(
num_samples
);
...
...
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