Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-2pick
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
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
MyCard
ygopro-2pick
Commits
f6fe0d0e
Commit
f6fe0d0e
authored
Nov 30, 2017
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua53
parent
07b23810
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
11 deletions
+16
-11
appveyor.yml
appveyor.yml
+4
-4
gframe/premake4.lua
gframe/premake4.lua
+1
-1
ocgcore/premake4.lua
ocgcore/premake4.lua
+1
-1
premake4.lua
premake4.lua
+7
-3
premake5.lua
premake5.lua
+3
-2
No files found.
appveyor.yml
View file @
f6fe0d0e
...
...
@@ -26,9 +26,9 @@ install:
-
move irrlicht-1.8.4\source\Irrlicht irrlicht\src
-
move irrlicht-1.8.4\include irrlicht\include
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.
2
.4.tar.gz ; exit 0"
-
tar xf lua-5.
2
.4.tar.gz
-
move lua-5.
2
.4\src lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.lua.org/ftp/lua-5.
3
.4.tar.gz ; exit 0"
-
tar xf lua-5.
3
.4.tar.gz
-
move lua-5.
3
.4\src lua
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name https://www.sqlite.org/2017/sqlite-amalgamation-3200100.zip ; exit 0"
-
7z x sqlite-amalgamation-3200100.zip
...
...
@@ -123,7 +123,7 @@ cache:
-
libevent-2.0.22-stable.tar.gz
-
freetype-2.8.tar.bz2
-
irrlicht-1.8.4.zip
-
lua-5.
2
.4.tar.gz
-
lua-5.
3
.4.tar.gz
-
sqlite-amalgamation-3200100.zip
-
irrKlang-32bit-1.5.0.zip
-
sqlite-amalgamation-3150200.zip
...
...
gframe/premake4.lua
View file @
f6fe0d0e
...
...
@@ -27,6 +27,6 @@ project "ygopro"
configuration
"not vs*"
buildoptions
{
"-std=gnu++0x"
,
"-fno-rtti"
}
configuration
"not windows"
includedirs
{
"/usr/include/lua"
,
"/usr/include/lua5.
2"
,
"/usr/include/lua/5.2
"
,
"/usr/include/irrlicht"
,
"/usr/include/freetype2"
}
includedirs
{
"/usr/include/lua"
,
"/usr/include/lua5.
3"
,
"/usr/include/lua/5.3
"
,
"/usr/include/irrlicht"
,
"/usr/include/freetype2"
}
excludes
{
"COSOperator.*"
}
links
{
"event_pthreads"
,
"GL"
,
"dl"
,
"pthread"
}
ocgcore/premake4.lua
View file @
f6fe0d0e
...
...
@@ -7,4 +7,4 @@ project "ocgcore"
configuration
"not vs*"
buildoptions
{
"-std=gnu++0x"
}
configuration
"not windows"
includedirs
{
"/usr/include/lua"
,
"/usr/include/lua5.
2"
,
"/usr/include/lua/5.2
"
}
includedirs
{
"/usr/include/lua"
,
"/usr/include/lua5.
3"
,
"/usr/include/lua/5.3
"
}
premake4.lua
View file @
f6fe0d0e
...
...
@@ -2,8 +2,10 @@ solution "ygo"
location
"build"
language
"C++"
objdir
"obj"
startproject
"ygopro"
configurations
{
"Debug"
,
"Release"
}
defines
{
"LUA_COMPAT_5_2"
}
configuration
"windows"
defines
{
"WIN32"
,
"_WIN32"
}
...
...
@@ -15,8 +17,10 @@ solution "ygo"
configuration
"macosx"
defines
{
"LUA_USE_MACOSX"
}
includedirs
{
"/opt/local/include"
}
libdirs
{
"/opt/local/lib"
}
includedirs
{
"/usr/local/include/*"
}
libdirs
{
"/usr/local/lib"
,
"/usr/X11/lib"
}
buildoptions
{
"-stdlib=libc++"
}
links
{
"OpenGL.framework"
,
"Cocoa.framework"
,
"IOKit.framework"
}
configuration
"linux"
defines
{
"LUA_USE_LINUX"
}
...
...
@@ -45,7 +49,7 @@ solution "ygo"
defines
{
"_ITERATOR_DEBUG_LEVEL=0"
}
configuration
"Release"
flags
{
"OptimizeSpeed"
}
--
flags { "OptimizeSpeed" }
targetdir
"bin/release"
include
"ocgcore"
...
...
premake5.lua
View file @
f6fe0d0e
...
...
@@ -3,13 +3,14 @@ solution "ygo"
language
"C++"
objdir
"obj"
USE_IRRKLANG
=
true
USE_IRRKLANG
=
true
if
os.getenv
(
"irrklang_pro"
)
then
IRRKLANG_PRO
=
true
end
startproject
"ygopro"
configurations
{
"Debug"
,
"Release"
}
defines
{
"LUA_COMPAT_5_2"
}
configuration
"windows"
defines
{
"WIN32"
,
"_WIN32"
,
"WINVER=0x0501"
}
...
...
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