14 lines
335 B
CMake
14 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 "")
|