blob: 063bbe5160a2c36eb1b01ad14abdfe293fcbbf50 [file] [log] [blame]
Chia-I Wu5b3e3d52015-02-25 12:45:34 +08001# - FindPthreadStubs
2#
Courtney Goeltzenleuchterfcbe16f2015-10-29 13:50:34 -06003# Copyright (C) 2015 Valve Corporation
Chia-I Wu5b3e3d52015-02-25 12:45:34 +08004
5find_package(PkgConfig)
6
7pkg_check_modules(PC_PTHREADSTUBS QUIET pthread-stubs)
8
9include(FindPackageHandleStandardArgs)
10find_package_handle_standard_args(PthreadStubs DEFAULT_MSG
11 PC_PTHREADSTUBS_FOUND)
12
13set(PTHREADSTUBS_INCLUDE_DIRS "")
14set(PTHREADSTUBS_LIBRARIES "")