mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 15:59:00 +08:00
6b117c9c7e
* [vcpkg docs] Change how documenting port functions works Instead of using `##`, use comment blocks for documentation. Also, add some minor docs and change RST -> MD so we actually get docs generated. * add CI stuff * regenerate docs * fix vcpkg_find_acquire_program to not use _execute_process
41 lines
994 B
CMake
41 lines
994 B
CMake
#[===[.md:
|
|
# vcpkg_build_ninja
|
|
|
|
Build a ninja project
|
|
|
|
## Usage:
|
|
```cmake
|
|
vcpkg_build_ninja(
|
|
[TARGETS <target>...]
|
|
)
|
|
```
|
|
|
|
## Parameters:
|
|
### TARGETS
|
|
Only build the specified targets.
|
|
#]===]
|
|
|
|
function(vcpkg_build_ninja)
|
|
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
|
cmake_parse_arguments(PARSE_ARGV 0 _vbn "" "" "TARGETS")
|
|
|
|
vcpkg_find_acquire_program(NINJA)
|
|
|
|
function(build CONFIG)
|
|
message(STATUS "Building (${CONFIG})...")
|
|
vcpkg_execute_build_process(
|
|
COMMAND "${NINJA}" -C "${CURRENT_BUILDTREES_DIR}/${CONFIG}" ${_vbn_TARGETS}
|
|
WORKING_DIRECTORY "${SOURCE_PATH}"
|
|
LOGNAME build-${CONFIG}
|
|
)
|
|
endfunction()
|
|
|
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
|
build(${TARGET_TRIPLET}-dbg)
|
|
endif()
|
|
|
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
|
build(${TARGET_TRIPLET}-rel)
|
|
endif()
|
|
endfunction()
|