Sha256: 58c34caabf20dbe856a41922c61c6b384b561fb1db6b3e370f64230bf7732fc4
Contents?: true
Size: 1.72 KB
Versions: 9
Compression:
Stored size: 1.72 KB
Contents
# =================================================================================== # The dlib CMake configuration file # # ** File generated automatically, do not modify ** # # Usage from an external project: # In your CMakeLists.txt, add these lines: # # FIND_PACKAGE(dlib REQUIRED) # TARGET_LINK_LIBRARIES(MY_TARGET_NAME ${dlib_LIBRARIES}) # # This file will define the following variables: # - dlib_LIBRARIES : The list of all imported targets for dlib modules. # - dlib_INCLUDE_DIRS : The dlib include directories. # - dlib_VERSION : The version of this dlib build. # - dlib_VERSION_MAJOR : Major version part of this dlib revision. # - dlib_VERSION_MINOR : Minor version part of this dlib revision. # # =================================================================================== # Compute paths get_filename_component(dlib_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_LESS 2.8) get_filename_component(dlib_INSTALL_PATH "@CONF_INSTALL_PATH@" ABSOLUTE) else() get_filename_component(dlib_INSTALL_PATH "@CONF_INSTALL_PATH@" REALPATH) endif() set(dlib_INCLUDE_DIRS "${dlib_INSTALL_PATH}/include" "@dlib_needed_includes@") # Our library dependencies (contains definitions for IMPORTED targets) if(NOT TARGET dlib-shared AND NOT dlib_BINARY_DIR) include("${dlib_CMAKE_DIR}/dlib.cmake") endif() find_library(dlib_LIBRARIES dlib HINTS ${dlib_INSTALL_PATH}/lib) set(dlib_LIBRARIES ${dlib_LIBRARIES} "@dlib_needed_libraries@") set(dlib_LIBS ${dlib_LIBRARIES} "@dlib_needed_libraries@") include(${dlib_INSTALL_PATH}/include/dlib/cmake_utils/use_cpp_11.cmake)
Version data entries
9 entries across 9 versions & 1 rubygems