Created
March 20, 2018 00:47
-
-
Save umegaya/57a60bdc35394331075b904d53847610 to your computer and use it in GitHub Desktop.
makefile to build Nethereum.ABI.dll for unity3d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UNITY_LIBDIR=/Your/Path/For/Nethereum.Unity | |
BASE_LIBDIR=../../lib | |
LIBDIR=$(BASE_LIBDIR),$(UNITY_LIBDIR) | |
DLLNAME=Nethereum.ABI.dll | |
all: | |
mcs -lib:$(LIBDIR) -r:Newtonsoft.Json.dll -r:Nethereum.Hex.dll -r:Nethereum.Util.dll -target:library -out:$(DLLNAME) *.cs */*.cs */*/*.cs | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment