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
cb269c9f
Commit
cb269c9f
authored
Nov 28, 2017
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
irr2015_test
parent
aa636bfb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
30 deletions
+9
-30
appveyor.yml
appveyor.yml
+8
-14
gframe/premake4.lua
gframe/premake4.lua
+1
-3
premake/gframe/__iob_func_fix.cpp
premake/gframe/__iob_func_fix.cpp
+0
-13
premake/irrKlang.7z
premake/irrKlang.7z
+0
-0
No files found.
appveyor.yml
View file @
cb269c9f
...
...
@@ -2,9 +2,7 @@ version: '{build}'
environment
:
irrklang_pro
:
secure
:
l0At/QtuW8XgdROZSAt4b3/pIssTVQ+EDpisjFzaaTUiWwBVDwE10C1bWuNqxk6O0Q54H0ZTBq0ZUXLNEx+59tRNe2F/KAbPjlFELry7gFI=
irrklang_pro_user
:
secure
:
TOWMXao5dXWg9MVdlEYaGjIeT6McnHodbNSO7DIJCfU=
secure
:
IHiumvV9+f+4JOGb9Al3Husl+Hox2gCq90R74mJQy+g=
install
:
-
git submodule update --init --recursive
...
...
@@ -36,22 +34,19 @@ install:
-
7z x sqlite-amalgamation-3200100.zip
-
move sqlite-amalgamation-3200100 sqlite3
#- bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name http://www.ambiera.at/downloads/irrKlang-32bit-1.5.0.zip ; exit 0"
#- 7z x irrKlang-32bit-1.5.0.zip
#- move irrKlang-1.5.0 irrklang
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name -u %irrklang_pro_user% %irrklang_pro% ; exit 0"
-
7z x irrKlang-pro-1.5.0.zip
-
move irrKlang-pro-1.5.0 irrklang
-
bash -c "curl --retry 5 --connect-timeout 30 --location --remote-header-name --remote-name http://www.ambiera.at/downloads/irrKlang-32bit-1.5.0.zip ; exit 0"
-
7z x irrKlang-32bit-1.5.0.zip
-
move irrKlang-1.5.0\plugins\ikpMP3 ikpmp3
-
move irrKlang-1.5.0 irrklang
-
move irrklang\plugins\ikpMP3 ikpmp3
# let premake happy
-
xcopy /E premake\* .
#irrklang pro
-
rm -rf irrklang/lib/Win32-visualStudio/irrKlang.lib
-
7z x -oirrklang/lib/Win32-visualStudio -p%irrklang_pro% irrKlang.7z
# patch irrlicht
# patch irrlicht
and ikpmp3
-
patch -p0 < irrlicht\irrlicht.patch
-
patch -p0 < ikpmp3\ikpmp3.patch
...
...
@@ -131,7 +126,6 @@ cache:
-
lua-5.2.4.tar.gz
-
sqlite-amalgamation-3200100.zip
-
irrKlang-32bit-1.5.0.zip
-
irrKlang-pro-1.5.0.zip
-
sqlite-amalgamation-3150200.zip
-
premake-5.0.0-alpha10-windows.zip
-
Redis-x64-3.2.100.zip
gframe/premake4.lua
View file @
cb269c9f
...
...
@@ -18,10 +18,8 @@ project "ygopro"
includedirs
{
"../irrklang/include"
}
if
IRRKLANG_PRO
then
defines
{
"IRRKLANG_STATIC"
}
libdirs
{
"../irrklang/bin/win32-visualstudio_lib"
}
else
libdirs
{
"../irrklang/lib/Win32-visualStudio"
}
end
libdirs
{
"../irrklang/lib/Win32-visualStudio"
}
end
links
{
"opengl32"
,
"ws2_32"
,
"winmm"
,
"gdi32"
,
"kernel32"
,
"user32"
,
"imm32"
}
configuration
{
"windows"
,
"not vs*"
}
...
...
premake/gframe/__iob_func_fix.cpp
deleted
100644 → 0
View file @
aa636bfb
// fix irrklang static lib don't support VS2015
// http://blog.csdn.net/10km/article/details/50528908
#if _MSC_VER >= 1900
#include "stdio.h"
_ACRTIMP_ALT
FILE
*
__cdecl
__acrt_iob_func
(
unsigned
);
#ifdef __cplusplus
extern
"C"
#endif
FILE
*
__cdecl
__iob_func
(
unsigned
i
)
{
return
__acrt_iob_func
(
i
);
}
#endif // _MSC_VER >= 1900
premake/irrKlang.7z
0 → 100644
View file @
cb269c9f
File added
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