mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 08:28:59 +08:00
5283cdb370
* [script-audit] Make buildsystem * Fix wrongly merge * Fix rename * Format * Apply suggestions * Apply suggestion * Fix bug * Change the function names * Fix command line * Apply suggestions * version * typo * Apply suggestions * Fix bug * Fix path * Fix bug * Fix un=parser code, move macros to the top * Apply suggestions * Update docs * update doc * CRLF * add docs and add a PARENT_SCOPE * Update doc Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
32 lines
825 B
CMake
32 lines
825 B
CMake
#[===[.md:
|
|
# vcpkg_install_make
|
|
|
|
Build and install a make project.
|
|
|
|
## Usage:
|
|
```cmake
|
|
vcpkg_install_make(...)
|
|
```
|
|
|
|
## Parameters:
|
|
See [`vcpkg_build_make()`](vcpkg_build_make.md).
|
|
|
|
## Notes:
|
|
This command transparently forwards to [`vcpkg_build_make()`](vcpkg_build_make.md), adding `ENABLE_INSTALL`
|
|
|
|
## Examples
|
|
|
|
* [x264](https://github.com/Microsoft/vcpkg/blob/master/ports/x264/portfile.cmake)
|
|
* [tcl](https://github.com/Microsoft/vcpkg/blob/master/ports/tcl/portfile.cmake)
|
|
* [freexl](https://github.com/Microsoft/vcpkg/blob/master/ports/freexl/portfile.cmake)
|
|
* [libosip2](https://github.com/Microsoft/vcpkg/blob/master/ports/libosip2/portfile.cmake)
|
|
#]===]
|
|
|
|
function(vcpkg_install_make)
|
|
vcpkg_build_make(
|
|
${ARGN}
|
|
LOGFILE_ROOT
|
|
ENABLE_INSTALL
|
|
)
|
|
endfunction()
|