early-access version 2853
This commit is contained in:
35
externals/vcpkg/ports/czmq/Finduuid.cmake
vendored
Executable file
35
externals/vcpkg/ports/czmq/Finduuid.cmake
vendored
Executable file
@@ -0,0 +1,35 @@
|
||||
find_path(
|
||||
UUID_INCLUDE_DIR
|
||||
NAMES uuid/uuid.h
|
||||
)
|
||||
|
||||
get_filename_component(_prefix_path ${UUID_INCLUDE_DIR} PATH)
|
||||
|
||||
find_library(
|
||||
UUID_LIBRARY_DEBUG
|
||||
NAMES uuid
|
||||
PATHS ${_prefix_path}/debug/lib
|
||||
NO_DEFAULT_PATH
|
||||
)
|
||||
|
||||
find_library(
|
||||
UUID_LIBRARY_RELEASE
|
||||
NAMES uuid
|
||||
PATHS ${_prefix_path}/lib
|
||||
NO_DEFAULT_PATH
|
||||
)
|
||||
|
||||
unset(_prefix_path)
|
||||
|
||||
include(SelectLibraryConfigurations)
|
||||
select_library_configurations(UUID)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(
|
||||
UUID
|
||||
REQUIRED_VARS UUID_LIBRARY UUID_INCLUDE_DIR
|
||||
)
|
||||
|
||||
if(UUID_FOUND)
|
||||
set(UUID_INCLUDE_DIRS ${UUID_INCLUDE_DIR})
|
||||
endif()
|
||||
Reference in New Issue
Block a user