Skip to content

Commit

Permalink
Remove sdk flag from default makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Mar 17, 2016
1 parent ad2c6e9 commit dc0011a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ env:
# Run the NUnit tests
script:
- travis_retry make all-dependencies
- make all
- make all SDK="-sdk:4.0"
- make check
- make check-scripts
- make test
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@

############################## TOOLCHAIN ###############################
#
CSC = mcs -sdk:4.0
SDK ?=
CSC = mcs $(SDK)
CSFLAGS = -nologo -warn:4 -codepage:utf8 -unsafe -warnaserror
DEFINE = TRACE
COMMON_LIBS = System.dll System.Core.dll System.Data.dll System.Data.DataSetExtensions.dll System.Drawing.dll System.Xml.dll thirdparty/download/ICSharpCode.SharpZipLib.dll thirdparty/download/FuzzyLogicLibrary.dll thirdparty/download/Mono.Nat.dll thirdparty/download/MaxMind.Db.dll thirdparty/download/MaxMind.GeoIP2.dll thirdparty/download/Eluant.dll thirdparty/download/SmarIrc4net.dll
Expand Down

0 comments on commit dc0011a

Please sign in to comment.