Commit aba6e363 authored by Davis King's avatar Davis King

A bit of cleanup

parent 51101fa9
......@@ -767,17 +767,11 @@ if (NOT TARGET dlib)
enable_cpp11_for_target(dlib_all_source_cpp)
endif()
if (TARGET dlib)
enable_cpp11_for_target(dlib)
if(MSVC AND CMAKE_VERSION VERSION_LESS 3.11)
target_compile_options(dlib PUBLIC ${active_compile_opts})
else()
if(CMAKE_VERSION VERSION_LESS 3.3)
target_compile_options(dlib PUBLIC ${active_compile_opts})
else()
target_compile_options(dlib PUBLIC $<$<COMPILE_LANGUAGE:CXX>:${active_compile_opts}>)
endif()
endif()
enable_cpp11_for_target(dlib)
if((MSVC AND CMAKE_VERSION VERSION_LESS 3.11) OR CMAKE_VERSION VERSION_LESS 3.3)
target_compile_options(dlib PUBLIC ${active_compile_opts})
else()
target_compile_options(dlib PUBLIC $<$<COMPILE_LANGUAGE:CXX>:${active_compile_opts}>)
endif()
# Install the library
......
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