* [vcpkg_*_nmake] Add option INSTALL_COMMAND
* [gdal] Update to 3.1.3 and switch to vcpkg_*_nmake on Windows
* [vcpkg_build_make] Add option MAKEFILE
* fix install on windows, fix linux build
* fix options position
* [gdal] Fix linux build
* [gdal] Fix expat library name
* [gdal] Fix geos library name
* [gdal] Fix cmake wrapper
* [pdal] Fix dependency geos
* [pdal] Fix PDALConfig.cmake
* [gdal] Fix dependency cfitsio on *inx
* disable cfitsio temporary
* [gdal] Correct cmake wrapper and usage
* [gdal] Fix tools on windows-static
* Revert a9ac823007
* Apply suggestions
* [vcpkg_build_nmake] Fix install command
* [vcpkg_build_nmake] Fix install command
* regenerate docs
* [gdal] Update dependency iconv and charset library names
* [gdal] add json-c as a dependency on non-windows
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com>
1.9 KiB
vcpkg_install_nmake
Build and install a msvc makefile project.
Usage:
vcpkg_install_nmake(
SOURCE_PATH <${SOURCE_PATH}>
[NO_DEBUG]
[TARGET <all>]
PROJECT_SUBPATH <${SUBPATH}>
PROJECT_NAME <${MAKEFILE_NAME}>
[PRERUN_SHELL <${SHELL_PATH}>]
[PRERUN_SHELL_DEBUG <${SHELL_PATH}>]
[PRERUN_SHELL_RELEASE <${SHELL_PATH}>]
[OPTIONS <-DUSE_THIS_IN_ALL_BUILDS=1>...]
[OPTIONS_RELEASE <-DOPTIMIZE=1>...]
[OPTIONS_DEBUG <-DDEBUGGABLE=1>...]
Parameters
SOURCE_PATH
Specifies the directory containing the source files.
By convention, this is usually set in the portfile as the variable SOURCE_PATH
.
PROJECT_SUBPATH
Specifies the sub directory containing the makefile.vc
/makefile.mak
/makefile.msvc
or other msvc makefile.
PROJECT_NAME
Specifies the name of msvc makefile name. Default is makefile.vc
NO_DEBUG
This port doesn't support debug mode.
PRERUN_SHELL
Script that needs to be called before build
PRERUN_SHELL_DEBUG
Script that needs to be called before debug build
PRERUN_SHELL_RELEASE
Script that needs to be called before release build
OPTIONS
Additional options passed to generate during the generation.
OPTIONS_RELEASE
Additional options passed to generate during the Release generation. These are in addition to OPTIONS
.
OPTIONS_DEBUG
Additional options passed to generate during the Debug generation. These are in addition to OPTIONS
.
Parameters:
See vcpkg_build_nmake()
.
Notes:
This command transparently forwards to vcpkg_build_nmake()
, adding ENABLE_INSTALL