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
f6495d00
Commit
f6495d00
authored
Mar 27, 2025
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
ef6595e6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
.github/workflows/build.yml
.github/workflows/build.yml
+1
-4
gframe/premake5.lua
gframe/premake5.lua
+3
-0
premake/miniaudio/premake5.lua
premake/miniaudio/premake5.lua
+4
-5
No files found.
.github/workflows/build.yml
View file @
f6495d00
...
@@ -373,8 +373,6 @@ jobs:
...
@@ -373,8 +373,6 @@ 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" \
...
@@ -385,8 +383,7 @@ jobs:
...
@@ -385,8 +383,7 @@ 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/lib
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 @
f6495d00
...
@@ -42,6 +42,9 @@ project "YGOPro"
...
@@ -42,6 +42,9 @@ project "YGOPro"
defines
{
"YGOPRO_USE_AUDIO"
}
defines
{
"YGOPRO_USE_AUDIO"
}
includedirs
{
"../miniaudio"
}
includedirs
{
"../miniaudio"
}
links
{
"miniaudio"
}
links
{
"miniaudio"
}
if
not
BUILD_OPUS_VORBIS
and
MINIAUDIO_SUPPORT_OPUS_VORBIS
then
links
{
"opusfile"
,
"vorbis"
}
end
end
end
filter
"system:windows"
filter
"system:windows"
...
...
premake/miniaudio/premake5.lua
View file @
f6495d00
...
@@ -29,13 +29,12 @@ project "miniaudio"
...
@@ -29,13 +29,12 @@ project "miniaudio"
"external/vorbis/include"
"external/vorbis/include"
}
}
else
else
print
(
"OPUS_
INCLUDE
_DIR:"
)
print
(
"OPUS_
LIB
_DIR:"
)
print
(
OPUS_
INCLUDE
_DIR
)
print
(
OPUS_
LIB
_DIR
)
print
(
"VORBIS_
INCLUDE
_DIR:"
)
print
(
"VORBIS_
LIB
_DIR:"
)
print
(
VORBIS_
INCLUDE
_DIR
)
print
(
VORBIS_
LIB
_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"
}
end
end
end
end
...
...
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