aboutsummaryrefslogtreecommitdiff
path: root/scripts/cmake/vcpkg_install_meson.cmake
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2020-02-12 15:58:43 -0800
committerGitHub <noreply@github.com>2020-02-12 15:58:43 -0800
commit5deea3b975fe62990973d73a102de818d83ba20c (patch)
tree99409a35c4ec06bca6d2f478418025317f6339c9 /scripts/cmake/vcpkg_install_meson.cmake
parentc36db6d3be1d2b4af843739752d267940e632b23 (diff)
downloadvcpkg-5deea3b975fe62990973d73a102de818d83ba20c.tar.gz
vcpkg-5deea3b975fe62990973d73a102de818d83ba20c.zip
[vcpkg-docs] Add documentation for `vcpkg_configure_meson()`, `vcpkg_install_meson()`, `vcpkg_fixup_cmake_targts()`, and `vcpkg_prettify_command()` (#7606)
* [vcpkg-docs] Add documentation for `vcpkg_configure_meson()`, `vcpkg_install_meson()`, `vcpkg_fixup_cmake_targts()`, and `vcpkg_prettify_command()` * [docs] Address code review comments. Reformat docs for vcpkg_fail_port_install.
Diffstat (limited to 'scripts/cmake/vcpkg_install_meson.cmake')
-rw-r--r--scripts/cmake/vcpkg_install_meson.cmake16
1 files changed, 13 insertions, 3 deletions
diff --git a/scripts/cmake/vcpkg_install_meson.cmake b/scripts/cmake/vcpkg_install_meson.cmake
index 7ab9d55b3..edc6c7302 100644
--- a/scripts/cmake/vcpkg_install_meson.cmake
+++ b/scripts/cmake/vcpkg_install_meson.cmake
@@ -1,7 +1,18 @@
+## # vcpkg_install_meson
+##
+## Builds a meson project previously configured with `vcpkg_configure_meson()`.
+##
+## ## Usage
+## ```cmake
+## vcpkg_install_meson()
+## ```
+##
+## ## Examples
+##
+## * [fribidi](https://github.com/Microsoft/vcpkg/blob/master/ports/fribidi/portfile.cmake)
+## * [libepoxy](https://github.com/Microsoft/vcpkg/blob/master/ports/libepoxy/portfile.cmake)
function(vcpkg_install_meson)
-
vcpkg_find_acquire_program(NINJA)
-
unset(ENV{DESTDIR}) # installation directory was already specified with '--prefix' option
message(STATUS "Package ${TARGET_TRIPLET}-rel")
@@ -17,5 +28,4 @@ function(vcpkg_install_meson)
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg
LOGNAME package-${TARGET_TRIPLET}-dbg
)
-
endfunction()