From 424ce3aca59ca9485dde349fd57ab43366ca337f Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 2 Mar 2021 21:02:16 -0600 Subject: [PATCH] [nostalgia][buildcore] Remove Nostalgia specific args from setup-build.py --- base.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/base.mk b/base.mk index f305547..3fd6653 100644 --- a/base.mk +++ b/base.mk @@ -94,17 +94,17 @@ endif .PHONY: configure-xcode configure-xcode: - ${ENV_RUN} ${SETUP_BUILD} --vcpkg_dir ${VCPKG_DIR} --build_tool xcode + ${ENV_RUN} ${SETUP_BUILD} --toolchain=${VCPKG_DIR}/scripts/buildsystems/vcpkg.cmake --build_tool=xcode .PHONY: configure-release configure-release: - ${ENV_RUN} ${SETUP_BUILD} --vcpkg_dir ${VCPKG_DIR} --build_type release + ${ENV_RUN} ${SETUP_BUILD} --toolchain=${VCPKG_DIR}/scripts/buildsystems/vcpkg.cmake --build_type=release .PHONY: configure-debug configure-debug: - ${ENV_RUN} ${SETUP_BUILD} --vcpkg_dir ${VCPKG_DIR} --build_type debug + ${ENV_RUN} ${SETUP_BUILD} --toolchain=${VCPKG_DIR}/scripts/buildsystems/vcpkg.cmake --build_type=debug .PHONY: configure-asan configure-asan: - ${ENV_RUN} ${SETUP_BUILD} --vcpkg_dir ${VCPKG_DIR} --build_type asan + ${ENV_RUN} ${SETUP_BUILD} --toolchain=${VCPKG_DIR}/scripts/buildsystems/vcpkg.cmake --build_type=asan