mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 20:28:59 +08:00
ad493fd860
* Add function vcpkg_configure_make/vcpkg_build_make. * Fix autoreconf command and add log. * Add vcpkg_install_make. * Fix call function name. * support non-debug mode. * Add nmake support. * [tcl]Add new port for testing. * [vcpkg_configure_make]Fix prefix in linux. * restart CI systen. * Separate vcpkg_build_nmake/vcpkg_install_nmake. Add arg PROJECT_NAME. * fix copy source file. add samples. * Remove uncommon options. Add force install para to autoreconf. * fix build error. * fix options judgment. * enable nmake in windows. * fix some envs and macros. Disable NMAKE in vcpkg_configure_make currently. * update docs. * fix environments. * Modify libosip2 to use vcpkg_configure_make/vcpkg_install_make. * [tcl]Tcl separates PR. * trigger PR-EAGER. * [freexl]Fix options name and remove option NMAKE. * use tool-chain instead of set environments manually. * fix autoreconf para. * use vcpkg_execute_build_process instead.
1.1 KiB
1.1 KiB
vcpkg_build_make
Build a linux makefile project.
Usage:
vcpkg_build_make([TARGET <target>])
TARGET
The target passed to the configure/make build command (./configure/make/make install
). If not specified, no target will
be passed.
ADD_BIN_TO_PATH
Adds the appropriate Release and Debug bin\
directories to the path during the build such that executables can run against the in-tree DLLs.
Notes:
This command should be preceeded by a call to vcpkg_configure_make()
.
You can use the alias vcpkg_install_make()
function if your CMake script supports the
"install" target