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
a74b98c2
Commit
a74b98c2
authored
Jan 07, 2014
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
osx
not finished
parent
cef3565d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
gframe/config.h
gframe/config.h
+7
-2
premake4.lua
premake4.lua
+4
-2
No files found.
gframe/config.h
View file @
a74b98c2
...
@@ -46,9 +46,14 @@ inline int _wtoi(const wchar_t * s) {
...
@@ -46,9 +46,14 @@ inline int _wtoi(const wchar_t * s) {
}
}
#endif
#endif
#include <irrlicht.h>
#include <irrlicht.h>
#ifdef __APPLE__
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#else
#include <GL/gl.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glu.h>
#endif
#include "CGUITTFont.h"
#include "CGUITTFont.h"
#include "CGUIImageButton.h"
#include "CGUIImageButton.h"
#include <iostream>
#include <iostream>
...
...
premake4.lua
View file @
a74b98c2
...
@@ -15,8 +15,10 @@ solution "ygo"
...
@@ -15,8 +15,10 @@ solution "ygo"
configuration
"macosx"
configuration
"macosx"
defines
{
"LUA_USE_MACOSX"
}
defines
{
"LUA_USE_MACOSX"
}
includedirs
{
"/opt/local/include"
}
includedirs
{
"/usr/local/include/*"
}
libdirs
{
"/opt/local/lib"
}
libdirs
{
"/usr/local/lib"
,
"/usr/X11/lib"
}
buildoptions
{
"-stdlib=libc++"
}
links
{
"OpenGL.framework"
,
"Cocoa.framework"
,
"IOKit.framework"
}
configuration
"linux"
configuration
"linux"
defines
{
"LUA_USE_LINUX"
}
defines
{
"LUA_USE_LINUX"
}
...
...
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