mirror of
https://github.com/openharmony/third_party_vulkan-loader.git
synced 2026-06-30 21:57:57 -04:00
15 lines
335 B
CMake
15 lines
335 B
CMake
# - FindPthreadStubs
|
|
#
|
|
# Copyright (C) 2015 Valve Corporation
|
|
|
|
find_package(PkgConfig)
|
|
|
|
pkg_check_modules(PC_PTHREADSTUBS QUIET pthread-stubs)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(PthreadStubs DEFAULT_MSG
|
|
PC_PTHREADSTUBS_FOUND)
|
|
|
|
set(PTHREADSTUBS_INCLUDE_DIRS "")
|
|
set(PTHREADSTUBS_LIBRARIES "")
|