You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
480 B
18 lines
480 B
$(info If on Mac, make sure to disable SIP, or copy the libpEpEngine.dylib into here)
|
|
|
|
ifdef ENGINE_LIB_PATH
|
|
ifeq ($(BUILD_FOR),Linux)
|
|
ifndef LD_LIBRARY_PATH
|
|
export LD_LIBRARY_PATH=$(ENGINE_LIB_PATH)
|
|
endif
|
|
else ifeq ($(BUILD_FOR),Darwin)
|
|
ifndef DYLD_LIBRARY_PATH
|
|
export DYLD_LIBRARY_PATH=$(ENGINE_LIB_PATH)
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
|
|
CLASSPATH=.:../../src
|
|
VM=java -Xcheck:jni -Djava.library.path=../../src
|
|
#VM=lldb java -- -Xcheck:jni -Djava.library.path=../src
|
|
|