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
1
Merge Requests
1
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
nanahira
ygopro
Commits
06f75a0c
Commit
06f75a0c
authored
Nov 03, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into server
parents
925679ed
0db1bb80
Pipeline
#41433
canceled with stages
in 5 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
11 deletions
+20
-11
gframe/premake5.lua
gframe/premake5.lua
+3
-2
ocgcore
ocgcore
+1
-1
premake/lua/premake5.lua
premake/lua/premake5.lua
+3
-8
premake5.lua
premake5.lua
+13
-0
No files found.
gframe/premake5.lua
View file @
06f75a0c
...
@@ -166,9 +166,10 @@ end
...
@@ -166,9 +166,10 @@ end
filter
"system:linux"
filter
"system:linux"
links
{
"dl"
,
"pthread"
}
links
{
"dl"
,
"pthread"
}
linkoptions
{
"-static-libstdc++"
,
"-static-libgcc"
}
if
USE_DYNAMIC
then
if
OCGCORE_DYNAMIC
then
linkoptions
{
"-Wl,-rpath=./"
}
linkoptions
{
"-Wl,-rpath=./"
}
else
linkoptions
{
"-static-libstdc++"
,
"-static-libgcc"
}
end
end
if
not
SERVER_MODE
then
if
not
SERVER_MODE
then
links
{
"GL"
,
"X11"
,
"Xxf86vm"
}
links
{
"GL"
,
"X11"
,
"Xxf86vm"
}
...
...
ocgcore
@
8dc2821c
Subproject commit
6c6805a4d97dcebf6f7ae02fe7bdea96782569b9
Subproject commit
8dc2821cc2e4890a8eb79837ca0db38e8ed92761
premake/lua/premake5.lua
View file @
06f75a0c
...
@@ -8,14 +8,6 @@ project "lua"
...
@@ -8,14 +8,6 @@ project "lua"
if
not
GetParam
(
"no-lua-safe"
)
then
if
not
GetParam
(
"no-lua-safe"
)
then
removefiles
{
"src/linit.c"
}
removefiles
{
"src/linit.c"
}
end
end
if
SERVER_PRO3_SUPPORT
then
defines
{
"LUA_USE_LONGJMP"
}
end
if
SERVER_PRO3_SUPPORT
or
OCGCORE_DYNAMIC
then
defines
{
"LUA_USE_LONGJMP"
}
end
filter
"configurations:Debug"
filter
"configurations:Debug"
defines
{
"LUA_USE_APICHECK"
}
defines
{
"LUA_USE_APICHECK"
}
...
@@ -28,3 +20,6 @@ project "lua"
...
@@ -28,3 +20,6 @@ project "lua"
filter
"system:linux"
filter
"system:linux"
defines
{
"LUA_USE_LINUX"
}
defines
{
"LUA_USE_LINUX"
}
if
USE_DYNAMIC
then
pic
"On"
end
premake5.lua
View file @
06f75a0c
...
@@ -27,6 +27,7 @@ IRRKLANG_PRO = false
...
@@ -27,6 +27,7 @@ IRRKLANG_PRO = false
IRRKLANG_PRO_BUILD_IKPMP3
=
false
IRRKLANG_PRO_BUILD_IKPMP3
=
false
-- ocgcore dynamic
-- ocgcore dynamic
OCGCORE_DYNAMIC
=
false
OCGCORE_DYNAMIC
=
false
USE_DYNAMIC
=
false
SERVER_MODE
=
true
SERVER_MODE
=
true
SERVER_ZIP_SUPPORT
=
false
SERVER_ZIP_SUPPORT
=
false
...
@@ -408,6 +409,14 @@ if GetParam("ocgcore-dynamic") then
...
@@ -408,6 +409,14 @@ if GetParam("ocgcore-dynamic") then
OCGCORE_DYNAMIC
=
true
OCGCORE_DYNAMIC
=
true
end
end
if
OCGCORE_DYNAMIC
then
USE_DYNAMIC
=
true
end
if
SERVER_PRO3_SUPPORT
then
USE_DYNAMIC
=
true
end
workspace
"YGOPro"
workspace
"YGOPro"
location
"build"
location
"build"
language
"C++"
language
"C++"
...
@@ -423,6 +432,10 @@ workspace "YGOPro"
...
@@ -423,6 +432,10 @@ workspace "YGOPro"
ApplyBoolean
(
boolOption
)
ApplyBoolean
(
boolOption
)
end
end
if
SERVER_PRO3_SUPPORT
then
defines
{
"LUA_USE_LONGJMP"
}
end
filter
"system:windows"
filter
"system:windows"
systemversion
"latest"
systemversion
"latest"
startproject
"YGOPro"
startproject
"YGOPro"
...
...
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