Skip to content

Instantly share code, notes, and snippets.

@umegaya
Created March 20, 2018 00:47
Show Gist options
  • Save umegaya/57a60bdc35394331075b904d53847610 to your computer and use it in GitHub Desktop.
Save umegaya/57a60bdc35394331075b904d53847610 to your computer and use it in GitHub Desktop.
makefile to build Nethereum.ABI.dll for unity3d
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