Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
R
rd-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
苍蓝
rd-ygopro
Commits
e80b7d6c
Commit
e80b7d6c
authored
Nov 12, 2018
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'irrlicht_linux'
parents
64e3e4e3
7ddd8d0e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
.gitignore
.gitignore
+1
-1
.travis.yml
.travis.yml
+1
-1
gframe/premake4.lua
gframe/premake4.lua
+4
-1
premake5.lua
premake5.lua
+3
-0
No files found.
.gitignore
View file @
e80b7d6c
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
/freetype
/freetype
/sqlite3
/sqlite3
/irrklang
/irrklang
/irrlicht
/irrlicht
*
# gframe additionals
# gframe additionals
/gframe/ygopro.ico
/gframe/ygopro.ico
...
...
.travis.yml
View file @
e80b7d6c
...
@@ -13,7 +13,6 @@ addons:
...
@@ -13,7 +13,6 @@ addons:
-
libfreetype6-dev
-
libfreetype6-dev
-
libevent-dev
-
libevent-dev
-
libsqlite3-dev
-
libsqlite3-dev
-
libirrlicht-dev
-
libgl1-mesa-dev
-
libgl1-mesa-dev
-
libglu-dev
-
libglu-dev
-
p7zip-full
-
p7zip-full
...
@@ -30,6 +29,7 @@ before_install:
...
@@ -30,6 +29,7 @@ before_install:
curl --location --retry 5 https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-macosx.tar.gz | tar zfx -;
curl --location --retry 5 https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-macosx.tar.gz | tar zfx -;
fi
fi
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
git clone https://github.com/DailyShana/irrlicht irrlicht_linux;
curl --location --retry 5 https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-linux.tar.gz | tar zfx -;
curl --location --retry 5 https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-linux.tar.gz | tar zfx -;
fi
fi
...
...
gframe/premake4.lua
View file @
e80b7d6c
...
@@ -33,16 +33,19 @@ project "ygopro"
...
@@ -33,16 +33,19 @@ project "ygopro"
configuration
"not vs*"
configuration
"not vs*"
buildoptions
{
"-std=c++14"
,
"-fno-rtti"
}
buildoptions
{
"-std=c++14"
,
"-fno-rtti"
}
configuration
"not windows"
configuration
"not windows"
includedirs
{
"/usr/include/
irrlicht"
,
"/usr/include/
freetype2"
}
includedirs
{
"/usr/include/freetype2"
}
excludes
{
"COSOperator.*"
}
excludes
{
"COSOperator.*"
}
links
{
"event_pthreads"
,
"GL"
,
"dl"
,
"pthread"
}
links
{
"event_pthreads"
,
"GL"
,
"dl"
,
"pthread"
}
configuration
"linux"
configuration
"linux"
includedirs
{
"../irrlicht_linux/include"
}
links
{
"X11"
,
"Xxf86vm"
}
if
USE_IRRKLANG
then
if
USE_IRRKLANG
then
links
{
"IrrKlang"
}
links
{
"IrrKlang"
}
linkoptions
{
"-Wl,-rpath=./"
}
linkoptions
{
"-Wl,-rpath=./"
}
libdirs
{
"../irrklang/bin/linux-gcc-64"
}
libdirs
{
"../irrklang/bin/linux-gcc-64"
}
end
end
configuration
"macosx"
configuration
"macosx"
includedirs
{
"/usr/include/irrlicht"
}
if
USE_IRRKLANG
then
if
USE_IRRKLANG
then
links
{
"irrklang"
}
links
{
"irrklang"
}
libdirs
{
"../irrklang/bin/macosx-gcc"
}
libdirs
{
"../irrklang/bin/macosx-gcc"
}
...
...
premake5.lua
View file @
e80b7d6c
...
@@ -77,6 +77,9 @@ solution "ygo"
...
@@ -77,6 +77,9 @@ solution "ygo"
include
"irrlicht"
include
"irrlicht"
include
"sqlite3"
include
"sqlite3"
end
end
if
os
.
ishost
(
"linux"
)
then
include
"irrlicht_linux"
end
if
USE_IRRKLANG
then
if
USE_IRRKLANG
then
include
"ikpmp3"
include
"ikpmp3"
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