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
YGOPRO-520DIY
ygopro
Commits
26b6539e
Commit
26b6539e
authored
Mar 27, 2025
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
6b64d8b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
.github/workflows/build.yml
.github/workflows/build.yml
+6
-1
gframe/premake5.lua
gframe/premake5.lua
+4
-0
No files found.
.github/workflows/build.yml
View file @
26b6539e
...
@@ -279,7 +279,8 @@ jobs:
...
@@ -279,7 +279,8 @@ jobs:
-
name
:
Use premake to generate make files
-
name
:
Use premake to generate make files
run
:
|
run
:
|
./premake5 gmake \
./premake5 gmake \
--freetype-include-dir="/usr/include/freetype2"
--freetype-include-dir="/usr/include/freetype2" \
--opus-include-dir="/usr/include/opus" \
-
name
:
Make
-
name
:
Make
run
:
|
run
:
|
...
@@ -372,6 +373,8 @@ jobs:
...
@@ -372,6 +373,8 @@ jobs:
-
name
:
Use premake to generate make files (Intel)
-
name
:
Use premake to generate make files (Intel)
if
:
runner.arch == 'X64'
if
:
runner.arch == 'X64'
run
:
|
run
:
|
ls /usr/local/include
ls /usr/local/include/opus
./premake5 gmake \
./premake5 gmake \
--cc=clang \
--cc=clang \
--freetype-include-dir="/usr/local/include/freetype2" \
--freetype-include-dir="/usr/local/include/freetype2" \
...
@@ -382,6 +385,8 @@ jobs:
...
@@ -382,6 +385,8 @@ jobs:
-
name
:
Use premake to generate make files (ARM64)
-
name
:
Use premake to generate make files (ARM64)
if
:
runner.arch == 'ARM64'
if
:
runner.arch == 'ARM64'
run
:
|
run
:
|
ls /opt/homebrew/include
ls /opt/homebrew/include/opus
./premake5 gmake \
./premake5 gmake \
--cc=clang \
--cc=clang \
--event-include-dir="/opt/homebrew/include" \
--event-include-dir="/opt/homebrew/include" \
...
...
gframe/premake5.lua
View file @
26b6539e
...
@@ -43,6 +43,10 @@ project "YGOPro"
...
@@ -43,6 +43,10 @@ project "YGOPro"
includedirs
{
"../miniaudio"
}
includedirs
{
"../miniaudio"
}
links
{
"miniaudio"
}
links
{
"miniaudio"
}
if
MINIAUDIO_SUPPORT_OPUS_VORBIS
and
not
BUILD_OPUS_VORBIS
then
if
MINIAUDIO_SUPPORT_OPUS_VORBIS
and
not
BUILD_OPUS_VORBIS
then
print
(
"OPUS_INCLUDE_DIR:"
)
print
(
OPUS_INCLUDE_DIR
)
print
(
"VORBIS_INCLUDE_DIR:"
)
print
(
VORBIS_INCLUDE_DIR
)
includedirs
{
OPUS_INCLUDE_DIR
,
VORBIS_INCLUDE_DIR
}
includedirs
{
OPUS_INCLUDE_DIR
,
VORBIS_INCLUDE_DIR
}
libdirs
{
OPUS_LIB_DIR
,
VORBIS_LIB_DIR
}
libdirs
{
OPUS_LIB_DIR
,
VORBIS_LIB_DIR
}
links
{
"opusfile"
,
"vorbis"
}
links
{
"opusfile"
,
"vorbis"
}
...
...
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