Skip to content

Commit

Permalink
Update Makefile.config.win to use parent directory for boost and xerc…
Browse files Browse the repository at this point in the history
…es paths
  • Loading branch information
mitsut committed May 8, 2024
1 parent 5913376 commit 4f9dde3
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Makefile.config.win
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Makefileの存在するディレクトリ
MAKEFILE_DIR:=$(dir $(abspath $(lastword $(MAKEFILE_LIST))))
# 一つ上のディレクトリ
PARENT_DIR := $(shell dirname ${MAKEFILE_DIR})

LIBBOOST_SUFFIX=
BOOST_VERSION=
BOOST_DIR=../boost
XERCES_DIR=../boost
LIBBOOST_DIR=../boost/stage/x64/Release/lib
LIBXERCES_DIR=../boost/stage/x64/Release/lib
BOOST_DIR=$(PARENT_DIR)/boost
XERCES_DIR=$(PARENT_DIR)/boost
LIBBOOST_DIR=$(PARENT_DIR)/boost/stage/x64/Release/lib
LIBXERCES_DIR=$(PARENT_DIR)/boost/stage/x64/Release/lib
OPTIONS=
HAS_CFG_XML=1

0 comments on commit 4f9dde3

Please sign in to comment.