aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-10-20 13:48:13 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-10-20 13:48:13 -0700
commit412a44c8f17aecb6f4a21844d0bff2ee5bc332d7 (patch)
tree1f904c1f1e04ed26fb4502ad5c45c95cc0150340
parent2153670c51e530f403ff3d53c81635231861c78a (diff)
downloadvcpkg-412a44c8f17aecb6f4a21844d0bff2ee5bc332d7.tar.gz
vcpkg-412a44c8f17aecb6f4a21844d0bff2ee5bc332d7.zip
[fastlz] Remove SHARED keyword to also allow building STATIC
-rw-r--r--ports/fastlz/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/fastlz/CMakeLists.txt b/ports/fastlz/CMakeLists.txt
index a517c0d4b..79a7a2a73 100644
--- a/ports/fastlz/CMakeLists.txt
+++ b/ports/fastlz/CMakeLists.txt
@@ -1,8 +1,8 @@
CMAKE_MINIMUM_REQUIRED ( VERSION 2.6)
-add_library (fastlz SHARED fastlz.c )
+add_library (fastlz fastlz.c)
-install (TARGETS fastlz DESTINATION
+install (TARGETS fastlz DESTINATION
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
ARCHIVE DESTINATION ${CMAKE_INSTALL_PREFIX}/lib