aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-17 17:38:04 -0700
committerGitHub <noreply@github.com>2017-10-17 17:38:04 -0700
commitbf67ca986e577f609647e923a7a56fca72e43d9c (patch)
treeed45e62536dd43526a2adf09930bdd802c8e7e2b
parent5c5e13058537e520fdcdb7be4cc6c4da233fb528 (diff)
parent50402e91cb46a619b06a2c63d23c693a7b4f563c (diff)
downloadvcpkg-bf67ca986e577f609647e923a7a56fca72e43d9c.tar.gz
vcpkg-bf67ca986e577f609647e923a7a56fca72e43d9c.zip
Merge pull request #1990 from xoviat/pthreads
FIX: pthreads: also install "pthreads.lib"
-rw-r--r--ports/pthreads/portfile.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/ports/pthreads/portfile.cmake b/ports/pthreads/portfile.cmake
index cabf8a39b..cddb3f411 100644
--- a/ports/pthreads/portfile.cmake
+++ b/ports/pthreads/portfile.cmake
@@ -32,3 +32,13 @@ foreach(HEADER ${HEADERS})
endforeach()
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/pthreads RENAME copyright)
+file(INSTALL
+ ${CURRENT_PACKAGES_DIR}/lib/pthreadsVC2.lib
+ DESTINATION ${CURRENT_PACKAGES_DIR}/lib/manual-link
+ RENAME pthreads.lib
+)
+file(INSTALL
+ ${CURRENT_PACKAGES_DIR}/debug/lib/pthreadsVC2d.lib
+ DESTINATION ${CURRENT_PACKAGES_DIR}/debug/lib/manual-link
+ RENAME pthreads.lib
+)