[nostalgia][buildcore] Put vcpkg pkgs in variable
This commit is contained in:
parent
ca4b9f7bdc
commit
e52ac1f78c
6
Makefile
6
Makefile
@ -1,6 +1,6 @@
|
||||
PROJECT_NAME=nostalgia
|
||||
VCPKG_VERSION=2020.06
|
||||
BUILDCORE_PATH=deps/buildcore
|
||||
VCPKG_PKGS=sdl2 jsoncpp
|
||||
include ${BUILDCORE_PATH}/base.mk
|
||||
|
||||
ifeq ($(OS),darwin)
|
||||
@ -25,10 +25,10 @@ run-studio: install
|
||||
.PHONY: gba-run
|
||||
gba-run: pkg-gba
|
||||
${MGBA} nostalgia.gba
|
||||
.PHONY: gdb
|
||||
.PHONY: debug
|
||||
debug: install
|
||||
${ENV_RUN} gdb --args ./dist/${CURRENT_BUILD}/bin/nostalgia sample_project
|
||||
.PHONY: gdb-studio
|
||||
.PHONY: debug-studio
|
||||
debug-studio: install
|
||||
${ENV_RUN} gdb --args ${NOSTALGIA_STUDIO}
|
||||
|
||||
|
7
deps/buildcore/base.mk
vendored
7
deps/buildcore/base.mk
vendored
@ -20,6 +20,9 @@ RM_RF=${PYBB} rm
|
||||
ifndef VCPKG_DIR_BASE
|
||||
VCPKG_DIR_BASE=.vcpkg
|
||||
endif
|
||||
ifndef VCPKG_VERSION
|
||||
VCPKG_VERSION=2020.06
|
||||
endif
|
||||
VCPKG_DIR=$(VCPKG_DIR_BASE)/$(VCPKG_VERSION)-$(HOST_ENV)
|
||||
DEVENV=devenv$(shell pwd | sed 's/\//-/g')
|
||||
DEVENV_IMAGE=${PROJECT_NAME}-devenv
|
||||
@ -87,9 +90,9 @@ endif
|
||||
.PHONY: vcpkg-install
|
||||
vcpkg-install:
|
||||
ifneq (${OS},windows)
|
||||
${VCPKG_DIR}/vcpkg install sdl2 jsoncpp
|
||||
${VCPKG_DIR}/vcpkg install ${VCPKG_PKGS}
|
||||
else
|
||||
${VCPKG_DIR}/vcpkg install --triplet x64-windows sdl2 jsoncpp
|
||||
${VCPKG_DIR}/vcpkg install --triplet x64-windows ${VCPKG_PKGS}
|
||||
endif
|
||||
|
||||
.PHONY: configure-xcode
|
||||
|
Loading…
Reference in New Issue
Block a user