Commit 9658dbff authored by vontio's avatar vontio
Browse files

Merge remote-tracking branch 'upstream/master'

parents d9f48a2b 0893940d
This diff is collapsed.
Copyright © 2002-2012 Charlie Poole
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
Copyright © 2000-2002 Philip A. Craig
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required.
Portions Copyright © 2002-2012 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
<?xml version="1.0" encoding="utf-8"?>
<repositories>
<repository path="..\NLuaTest\packages.config" />
</repositories>
\ No newline at end of file
#!/bin/sh
cd Core/KeraLua
make -f Makefile.iOS
xbuild KeraLua.sln /p:Configuration=Release
cd ../../
make -f Makefile.iOS run
......@@ -8,9 +8,9 @@
cd Core/KeraLua/
make -f Makefile.Linux
xbuild KeraLua.sln /p:Configuration=Release
xbuild KeraLua.Net40.sln /p:Configuration=Release
cd ../../
xbuild NLua.sln /p:Configuration=Release
xbuild NLua.Net40.sln /p:Configuration=Release
export LD_LIBRARY_PATH=$PWD/Core/KeraLua/external/lua/linux/lib64
cd tests/
nunit-console NLuaTest.dll
#!/bin/sh
xbuild NLua.sln /p:Configuration=ReleaseKopiLua
xbuild NLua.Net40.sln /p:Configuration=ReleaseKopiLua
cd tests/
export MONO_PATH="/Library/Frameworks/Mono.framework/Libraries/mono/4.0/"
nunit-console NLuaTest.dll -xml=$1
#!/bin/sh
cd Core/KeraLua
make -f Makefile.OSX
xbuild KeraLua.sln /p:Configuration=Release
xbuild KeraLua.Net40.sln /p:Configuration=Release
cd ../../
cp Core/KeraLua/external/lua/osx/lib/liblua52.dylib tests/liblua52.dylib
xbuild NLua.sln /p:Configuration=Release
xbuild NLua.Net40.sln /p:Configuration=Release
cd tests/
export MONO_PATH="/Library/Frameworks/Mono.framework/Libraries/mono/4.0/"
nunit-console NLuaTest.dll -xml=$1
erase tests\*.dll
msbuild NLua.sln /p:Configuration=ReleaseKopiLua /p:Platform="Any CPU"
msbuild NLua.Net40.sln /p:Configuration=ReleaseKopiLua /p:Platform="Any CPU"
cd tests/
nunit-console NLuaTest.dll /xml=$1
cd ..
\ No newline at end of file
erase tests\*.dll
cd Core\KeraLua
call Makefile.Win32.bat
msbuild KeraLua.sln /p:Configuration=Release /p:Platform="Any CPU"
msbuild KeraLua.Net40.sln /p:Configuration=Release /p:Platform="Any CPU"
cd ..\..
xcopy Core\KeraLua\external\lua\win32\bin\*.dll tests\*.dll
msbuild NLua.sln /p:Configuration=Release /p:Platform="Any CPU"
msbuild NLua.Net40.sln /p:Configuration=Release /p:Platform="Any CPU"
cd tests/
nunit-console NLuaTest.dll /xml=$1
cd ..
......
erase tests\*.dll
cd Core\KeraLua
call Makefile.Win64.bat
msbuild KeraLua.sln /p:Configuration=Release /p:Platform="Any CPU"
msbuild KeraLua.Net40.sln /p:Configuration=Release /p:Platform="Any CPU"
cd ..\..
xcopy Core\KeraLua\external\lua\win64\bin64\*.dll tests\*.dll
msbuild NLua.sln /p:Configuration=Release /p:Platform="Any CPU"
msbuild NLua.Net40.sln /p:Configuration=Release /p:Platform="Any CPU"
cd tests/
nunit-console NLuaTest.dll /xml=$1
cd ..
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment