Commit 59e6d1da authored by mercury233's avatar mercury233

test

parent 759f909d
......@@ -9,8 +9,8 @@ install:
- git submodule update --init --recursive
# environment and system dependency
- bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha11/premake-5.0.0-alpha11-windows.zip ; exit 0"
- 7z x premake-5.0.0-alpha11-windows.zip
- bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/premake/premake-core/releases/download/v5.0.0-alpha12/premake-5.0.0-alpha12-windows.zip ; exit 0"
- 7z x premake-5.0.0-alpha12-windows.zip
- bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz ; exit 0"
- tar xf libevent-2.0.22-stable.tar.gz
......@@ -90,7 +90,7 @@ deploy:
branch: master
cache:
- premake-5.0.0-alpha11-windows.zip
- premake-5.0.0-alpha12-windows.zip
- libevent-2.0.22-stable.tar.gz
- freetype-2.8.tar.bz2
- irrlicht-1.8.4.zip
......
......@@ -7,6 +7,7 @@ solution "ygo"
configuration "windows"
defines { "WIN32", "_WIN32", "WINVER=0x0501" }
entrypoint "mainCRTStartup"
configuration "bsd"
defines { "LUA_USE_POSIX" }
......@@ -24,7 +25,7 @@ solution "ygo"
defines { "LUA_USE_LINUX" }
configuration "Release"
flags { "OptimizeSpeed" }
optimize "Speed"
targetdir "bin/release"
configuration "Debug"
......@@ -45,7 +46,7 @@ solution "ygo"
defines { "_ITERATOR_DEBUG_LEVEL=0" }
configuration "vs*"
flags "EnableSSE2"
vectorextensions "SSE2"
defines { "_CRT_SECURE_NO_WARNINGS" }
configuration "not vs*"
......@@ -58,7 +59,7 @@ solution "ygo"
include "ocgcore"
include "gframe"
if os.is("windows") then
if os.ishost("windows") then
include "event"
include "freetype"
include "irrlicht"
......
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