diff options
| author | Andrei Lebedev <lebdron@gmail.com> | 2020-09-24 22:29:13 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-24 12:29:13 -0700 |
| commit | 8d4fd6df85e94e8658f512418027ff7d66857b15 (patch) | |
| tree | ee0a30c0f000afbaa6205ed3dc3edaa1c5111e49 /scripts | |
| parent | c6fbdb0c5d03429e40b8990e1637b57290a283f3 (diff) | |
| download | vcpkg-8d4fd6df85e94e8658f512418027ff7d66857b15.tar.gz vcpkg-8d4fd6df85e94e8658f512418027ff7d66857b15.zip | |
[vcpkg, libpq] separate static and shared library installations (#13491)
* [vcpkg] add missing Makefile flag for install step
Signed-off-by: Andrei Lebedev <lebdron@gmail.com>
* [libpq] add custom Makefile to install only required targets
Signed-off-by: Andrei Lebedev <lebdron@gmail.com>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/cmake/vcpkg_build_make.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_build_make.cmake b/scripts/cmake/vcpkg_build_make.cmake index c957fc628..523f0042d 100644 --- a/scripts/cmake/vcpkg_build_make.cmake +++ b/scripts/cmake/vcpkg_build_make.cmake @@ -80,7 +80,7 @@ function(vcpkg_build_make) # Set make command and install command
set(MAKE_OPTS ${_bc_MAKE_OPTIONS} V=1 -j ${VCPKG_CONCURRENCY} -f Makefile ${_bc_BUILD_TARGET})
set(NO_PARALLEL_MAKE_OPTS ${_bc_MAKE_OPTIONS} V=1 -j 1 -f Makefile ${_bc_BUILD_TARGET})
- set(INSTALL_OPTS -j ${VCPKG_CONCURRENCY} install DESTDIR=${CURRENT_PACKAGES_DIR})
+ set(INSTALL_OPTS -j ${VCPKG_CONCURRENCY} -f Makefile install DESTDIR=${CURRENT_PACKAGES_DIR})
endif()
# Since includes are buildtype independent those are setup by vcpkg_configure_make
|
