mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 03:46:44 +08:00
506299a173
* [libproxy]Add new port.
* [libmodman]Add new port.
* [libproxy]Support windows, set dependency libmodman.
* Add usage, add vcpkg-cmake-wrapper.cmake to libproxy.
* add empty line to usage.
* [libmodman]Fix undefined typeid in Visual Studio 2019.
* [libproxy]Fix install libproxy.py error when it not exist.
* Disable arm/uwp build.
* Enable static build on UNIX.
* [libproxy]Re-generate patches, delete default feature tools and use system libmodman.
* [libproxy]Disable install libproxy.py.
* [libproxy]Disable install Libproxy.pm and PLlibproxy.
* [libproxy]DISABLE PARALLEL CONFIGURE
* [libproxy]Revert 6f233cced1
* [libmodman/libproxy]Fix arm build.
37 lines
1.7 KiB
Diff
37 lines
1.7 KiB
Diff
diff --git a/bindings/python/python3/CMakeLists.txt b/bindings/python/python3/CMakeLists.txt
|
|
index bf87dfc..9f94c2d 100644
|
|
--- a/bindings/python/python3/CMakeLists.txt
|
|
+++ b/bindings/python/python3/CMakeLists.txt
|
|
@@ -21,5 +21,4 @@ if(PYTHON3INTERP_FOUND)
|
|
|
|
message(STATUS "Using PYTHON3_SITEPKG_DIR=${PYTHON3_SITEPKG_DIR}")
|
|
|
|
- install(FILES ../libproxy.py DESTINATION ${PYTHON3_SITEPKG_DIR})
|
|
endif()
|
|
diff --git a/bindings/python/python2/CMakeLists.txt b/bindings/python/python2/CMakeLists.txt
|
|
index 00df551..15d78f9 100644
|
|
--- a/bindings/python/python2/CMakeLists.txt
|
|
+++ b/bindings/python/python2/CMakeLists.txt
|
|
@@ -21,5 +21,4 @@ if(PYTHON2INTERP_FOUND)
|
|
|
|
message(STATUS "Using PYTHON2_SITEPKG_DIR=${PYTHON2_SITEPKG_DIR}")
|
|
|
|
- install(FILES ../libproxy.py DESTINATION ${PYTHON2_SITEPKG_DIR})
|
|
endif()
|
|
diff --git a/bindings/perl/lib/CMakeLists.txt b/bindings/perl/lib/CMakeLists.txt
|
|
index 9856627..f54c138 100644
|
|
--- a/bindings/perl/lib/CMakeLists.txt
|
|
+++ b/bindings/perl/lib/CMakeLists.txt
|
|
@@ -1,2 +1 @@
|
|
add_custom_target(PMlibproxy ALL ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/Libproxy.pm ${CMAKE_BINARY_DIR}/perl/blib/lib/Libproxy.pm)
|
|
-install( FILES Libproxy.pm DESTINATION ${PX_PERL_ARCH}/Net )
|
|
diff --git a/bindings/perl/src/CMakeLists.txt b/bindings/perl/src/CMakeLists.txt
|
|
index 05176c4..9ca532f 100644
|
|
--- a/bindings/perl/src/CMakeLists.txt
|
|
+++ b/bindings/perl/src/CMakeLists.txt
|
|
@@ -21,4 +21,3 @@ target_link_libraries(PLlibproxy ${PLlibproxy_LIB_DEPENDENCIES})
|
|
set_target_properties(PLlibproxy PROPERTIES OUTPUT_NAME "Libproxy")
|
|
set_target_properties(PLlibproxy PROPERTIES PREFIX "")
|
|
|
|
-install( TARGETS PLlibproxy DESTINATION ${PX_PERL_ARCH}/auto/Net/Libproxy )
|