mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 23:49:09 +08:00
8 lines
235 B
CMake
8 lines
235 B
CMake
|
# Give the CMake module a little bit of help to find the debug libraries
|
||
|
find_library(PostgreSQL_LIBRARY_DEBUG
|
||
|
NAMES pq
|
||
|
PATHS
|
||
|
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug/lib"
|
||
|
NO_DEFAULT_PATH
|
||
|
)
|
||
|
_find_package(${ARGS})
|