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
wyykak
ygopro
Commits
c412de73
Commit
c412de73
authored
May 13, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into server
parents
5bd2b930
27d7a668
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
4 deletions
+8
-4
.gitignore
.gitignore
+1
-0
gframe/premake4.lua
gframe/premake4.lua
+1
-1
ocgcore
ocgcore
+1
-1
premake5.lua
premake5.lua
+4
-1
script
script
+1
-1
No files found.
.gitignore
View file @
c412de73
...
...
@@ -14,6 +14,7 @@ build
/sqlite3
/irrklang
/irrlicht*
/lua
# gframe additionals
/gframe/ygopro.ico
...
...
gframe/premake4.lua
View file @
c412de73
...
...
@@ -36,7 +36,7 @@ project "ygopro"
buildoptions
{
"-std=c++14"
,
"-fno-rtti"
}
configuration
"not windows"
links
{
"event_pthreads"
,
"dl"
,
"pthread"
}
if
os.getenv
(
"YGOPRO_BUILD_LUA"
)
then
if
BUILD_LUA
then
links
{
"lua"
}
else
links
{
"lua5.3-c++"
}
...
...
ocgcore
@
e081bea3
Subproject commit
1cfec8c52c9f2f531b1f0cc373620728dba3c0ee
Subproject commit
e081bea359916a94dd7897ff234b4d40f2db0aa6
premake5.lua
View file @
c412de73
...
...
@@ -2,6 +2,9 @@ solution "ygo"
location
"build"
language
"C++"
objdir
"obj"
if
os
.
ishost
(
"linux"
)
and
os.getenv
(
"YGOPRO_BUILD_LUA"
)
then
BUILD_LUA
=
true
end
configurations
{
"Release"
,
"Debug"
}
if
os.getenv
(
"YGOPRO_NO_LUA_SAFE"
)
then
...
...
@@ -86,6 +89,6 @@ end
include
"sqlite3"
end
if
os.
getenv
(
"YGOPRO_BUILD_LUA"
)
then
if
os
.
ishost
(
"macosx"
)
or
BUILD_LUA
then
include
"lua"
end
script
@
25bcf78b
Subproject commit
cf96f6036abe927a23ac0bb2b7d4cc46ce41ff9f
Subproject commit
25bcf78bcdd61e183855e68bc46294b25dd28eac
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