Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
REIKAI
ygopro
Commits
802fbda3
Commit
802fbda3
authored
Apr 13, 2020
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into server
parents
0bdec527
afca6cd2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
9 deletions
+36
-9
appveyor.yml
appveyor.yml
+3
-3
premake/lua/premake4.lua
premake/lua/premake4.lua
+6
-4
premake5.lua
premake5.lua
+27
-2
No files found.
appveyor.yml
View file @
802fbda3
...
@@ -8,7 +8,7 @@ install:
...
@@ -8,7 +8,7 @@ install:
# environment and system dependency
# 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-alpha14/premake-5.0.0-alpha14-windows.zip ; exit 0"
-
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-alpha14/premake-5.0.0-alpha14-windows.zip ; exit 0"
-
7z x premake-5.0.0-alpha14-windows.zip
-
7z x
-y
premake-5.0.0-alpha14-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"
-
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
-
tar xf libevent-2.0.22-stable.tar.gz
...
@@ -19,8 +19,8 @@ install:
...
@@ -19,8 +19,8 @@ install:
-
tar xf lua-5.3.5.tar.gz
-
tar xf lua-5.3.5.tar.gz
-
move lua-5.3.5\src lua
-
move lua-5.3.5\src lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/20
20/sqlite-amalgamation-3310100.zip
; exit 0"
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/20
18/sqlite-amalgamation-3310100.zip
; exit 0"
-
7z x sqlite-amalgamation-3310100.zip
-
7z x
-y
sqlite-amalgamation-3310100.zip
-
move sqlite-amalgamation-3310100 sqlite3
-
move sqlite-amalgamation-3310100 sqlite3
# let premake happy
# let premake happy
...
...
premake/lua/premake4.lua
View file @
802fbda3
project
"lua"
project
"lua"
kind
"StaticLib"
kind
"StaticLib"
files
{
"*
.c"
,
"*.cpp"
,
"*.h"
,
"*.hpp
"
}
files
{
"*
*.cc"
,
"**.cpp"
,
"**.c"
,
"**.h
"
}
removefil
es
{
"lua.c"
,
"luac.c"
}
exclud
es
{
"lua.c"
,
"luac.c"
}
configuration
"vs*"
configuration
"vs*"
buildoptions
{
"/TP"
}
buildoptions
{
"/TP"
}
configuration
"not vs*"
buildoptions
{
"-x c++"
}
premake5.lua
View file @
802fbda3
...
@@ -14,11 +14,14 @@ end
...
@@ -14,11 +14,14 @@ end
startproject
"ygopro"
startproject
"ygopro"
if
os.getenv
(
"YGOPRO_USE_XP_TOOLSET"
)
then
if
os.getenv
(
"YGOPRO_USE_XP_TOOLSET"
)
then
configuration
{
"windows"
,
"vs2015"
}
toolset
"v140_xp"
configuration
{
"windows"
,
"vs2017"
}
configuration
{
"windows"
,
"vs2017"
}
toolset
"v141_xp"
toolset
"v141_xp"
configuration
{
"windows"
,
"
not vs2017
"
}
configuration
{
"windows"
,
"
vs2019
"
}
toolset
"v14
0
_xp"
toolset
"v14
1
_xp"
end
end
configuration
"bsd"
configuration
"bsd"
...
@@ -52,11 +55,15 @@ end
...
@@ -52,11 +55,15 @@ end
if
not
os
.
ishost
(
"macosx"
)
then
if
not
os
.
ishost
(
"macosx"
)
then
staticruntime
"On"
staticruntime
"On"
end
end
<<<<<<<
HEAD
disablewarnings
{
"4244"
,
"4267"
,
"4838"
,
"4577"
,
"4819"
,
"4018"
,
"4996"
,
"4477"
,
"4091"
,
"4305"
,
"4828"
,
"4800"
}
disablewarnings
{
"4244"
,
"4267"
,
"4838"
,
"4577"
,
"4819"
,
"4018"
,
"4996"
,
"4477"
,
"4091"
,
"4305"
,
"4828"
,
"4800"
}
=======
=======
staticruntime
"On"
staticruntime
"On"
disablewarnings
{
"4244"
,
"4267"
,
"4838"
,
"4577"
,
"4819"
,
"4018"
,
"4996"
,
"4477"
,
"4091"
,
"4828"
,
"4800"
}
disablewarnings
{
"4244"
,
"4267"
,
"4838"
,
"4577"
,
"4819"
,
"4018"
,
"4996"
,
"4477"
,
"4091"
,
"4828"
,
"4800"
}
>>>>>>>
c2bd783e73660d7357546b44aaf3a9dfe1dee030
>>>>>>>
c2bd783e73660d7357546b44aaf3a9dfe1dee030
=======
disablewarnings
{
"4244"
,
"4267"
,
"4838"
,
"4577"
,
"4819"
,
"4018"
,
"4996"
,
"4477"
,
"4091"
,
"4828"
,
"4800"
}
>>>>>>>
master
configuration
{
"Release"
,
"not vs*"
}
configuration
{
"Release"
,
"not vs*"
}
symbols
"On"
symbols
"On"
...
@@ -78,6 +85,7 @@ end
...
@@ -78,6 +85,7 @@ end
configuration
{
"not vs*"
,
"windows"
}
configuration
{
"not vs*"
,
"windows"
}
buildoptions
{
"-static-libgcc"
}
buildoptions
{
"-static-libgcc"
}
<<<<<<<
HEAD
startproject
"ygopro"
startproject
"ygopro"
include
"ocgcore"
include
"ocgcore"
...
@@ -87,3 +95,20 @@ end
...
@@ -87,3 +95,20 @@ end
include
"event"
include
"event"
include
"sqlite3"
include
"sqlite3"
end
end
=======
include
"ocgcore"
include
"gframe"
if
os
.
ishost
(
"windows"
)
then
include
"lua"
include
"event"
include
"freetype"
include
"irrlicht"
include
"sqlite3"
end
if
os
.
ishost
(
"linux"
)
then
include
"irrlicht_linux"
end
if
USE_IRRKLANG
then
include
"ikpmp3"
end
>>>>>>>
master
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment