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
c81872e9
Commit
c81872e9
authored
Apr 06, 2018
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rubbish
parent
6f122f83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
41 deletions
+0
-41
gframe/CMakeLists.txt
gframe/CMakeLists.txt
+0
-41
No files found.
gframe/CMakeLists.txt
deleted
100644 → 0
View file @
6f122f83
project
(
ygopro
)
if
(
NOT WIN32 AND NOT APPLE
)
include
(
FindX11
)
endif
()
set
(
AUTO_FILES_RESULT
)
if
(
MSVC
)
AutoFiles
(
"."
"res"
"
\\
.(rc)$"
)
AutoFiles
(
"."
"src"
"
\\
.(cpp|c|h)$"
"CGUIButton.cpp"
)
else
()
AutoFiles
(
"."
"src"
"
\\
.(cpp|c|h)$"
)
endif
()
if
(
MSVC
)
SET
(
CMAKE_EXE_LINKER_FLAGS
"
${
CMAKE_EXE_LINKER_FLAGS
}
/ENTRY:mainCRTStartup"
)
add_executable
(
ygopro WIN32
${
AUTO_FILES_RESULT
}
)
else
()
add_executable
(
ygopro
${
AUTO_FILES_RESULT
}
)
endif
()
target_link_libraries
(
ygopro ocgcore
)
if
(
MSVC
)
target_link_libraries
(
ygopro opengl32 irrlicht freetype sqlite3 lua event
)
include_directories
(
"../irrlicht/include"
"../freetype/include"
"../event/include"
"../sqlite3"
)
else
()
target_link_libraries
(
ygopro
${
FREETYPE_LIBRARY
}
${
LUA_LIBRARIES
}
${
LIBEVENT_LIBRARIES
}
${
IRRLICHT_LIBRARIES
}
${
SQLITE3_LIBRARIES
}
${
OPENGL_gl_LIBRARY
}
)
include_directories
(
${
FREETYPE_INCLUDE_DIRS
}
${
LUA_INCLUDE_DIR
}
${
LIBEVENT_INCLUDE_DIR
}
${
IRRLICHT_INCLUDE_DIR
}
${
SQLITE3_INCLUDE_DIR
}
${
OPENGL_INCLUDE_DIR
}
)
target_link_libraries
(
ygopro
${
CMAKE_THREAD_LIBS_INIT
}
${
DL_LIBRARIES
}
)
endif
()
if
(
WIN32
)
target_link_libraries
(
ygopro ws2_32 winmm gdi32 kernel32 user32 imm32
)
endif
()
create_target_launcher
(
ygopro WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
)
create_default_target_launcher
(
ygopro WORKING_DIRECTORY
${
CMAKE_SOURCE_DIR
}
)
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