Skip to content
4 changes: 2 additions & 2 deletions ports/chakracore/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ else()
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
list(APPEND configs "debug")
execute_process(
COMMAND bash "build.sh" "--arch=${CHAKRACORE_TARGET_ARCH}" "--debug"
COMMAND bash "build.sh" "--arch=${CHAKRACORE_TARGET_ARCH}" "--debug" "-j"
WORKING_DIRECTORY "${BUILDTREE_PATH}"

OUTPUT_VARIABLE CHAKRA_BUILD_SH_OUT
Expand All @@ -62,7 +62,7 @@ else()
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
list(APPEND configs "release")
execute_process(
COMMAND bash "build.sh" "--arch=${CHAKRACORE_TARGET_ARCH}"
COMMAND bash "build.sh" "--arch=${CHAKRACORE_TARGET_ARCH}" "-j"
WORKING_DIRECTORY "${BUILDTREE_PATH}"
OUTPUT_VARIABLE CHAKRA_BUILD_SH_OUT
ERROR_VARIABLE CHAKRA_BUILD_SH_ERR
Expand Down
1 change: 1 addition & 0 deletions ports/chakracore/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "chakracore",
"version-string": "2021-04-22",
Comment thread
Pospelove marked this conversation as resolved.
Outdated
"port-version": 1,
"description": "Core part of the Chakra Javascript engine",
"homepage": "https://github.com/Microsoft/ChakraCore",
"supports": "!osx & !uwp & (linux | !static)"
Expand Down