"tests/python/tensorflow/test_nn.py" did not exist on "93ac29ce3446ff5d82f9ec91eb597ca236cbd8fb"
Commit f62d0474 authored by Davis King's avatar Davis King
Browse files

Added dlib version to compiled library file names when using visual studio.

parent ad414af7
...@@ -823,10 +823,10 @@ if (MSVC) ...@@ -823,10 +823,10 @@ if (MSVC)
# what happens since, at the very least, the filenames will indicate what # what happens since, at the very least, the filenames will indicate what
# visual studio runtime they go with. # visual studio runtime they go with.
math(EXPR numbits ${CMAKE_SIZEOF_VOID_P}*8) math(EXPR numbits ${CMAKE_SIZEOF_VOID_P}*8)
set_target_properties(dlib PROPERTIES DEBUG_POSTFIX "_debug_${numbits}bit_msvc${MSVC_VERSION}") set_target_properties(dlib PROPERTIES DEBUG_POSTFIX "${VERSION}_debug_${numbits}bit_msvc${MSVC_VERSION}")
set_target_properties(dlib PROPERTIES RELEASE_POSTFIX "_release_${numbits}bit_msvc${MSVC_VERSION}") set_target_properties(dlib PROPERTIES RELEASE_POSTFIX "${VERSION}_release_${numbits}bit_msvc${MSVC_VERSION}")
set_target_properties(dlib PROPERTIES MINSIZEREL_POSTFIX "_minsizerel_${numbits}bit_msvc${MSVC_VERSION}") set_target_properties(dlib PROPERTIES MINSIZEREL_POSTFIX "${VERSION}_minsizerel_${numbits}bit_msvc${MSVC_VERSION}")
set_target_properties(dlib PROPERTIES RELWITHDEBINFO_POSTFIX "_relwithdebinfo_${numbits}bit_msvc${MSVC_VERSION}") set_target_properties(dlib PROPERTIES RELWITHDEBINFO_POSTFIX "${VERSION}_relwithdebinfo_${numbits}bit_msvc${MSVC_VERSION}")
endif() endif()
add_library(dlib::dlib ALIAS dlib) add_library(dlib::dlib ALIAS dlib)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment