-
Notifications
You must be signed in to change notification settings - Fork 599
Home
DailyShana edited this page Oct 13, 2018
·
18 revisions
A script engine for "yu-gi-oh!" and sample gui
see wiki page.
First get dependences, for details, see wiki (to be added).
Then generate project files to build:
# get source code
git clone https://github.com/Fluorohydride/ygopro.git
cd ygopro
git submodule update --init --recursive
# out-of-source build
mkdir build && cd build
# Linux
# generate make file
cmake -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ..
# build
make
# Windows
# generate visual studio project
cmake -G "Visual Studio 15 2017" ..
# open \build\ygopro.sln and build
# or use cmake GUI to config and generate project files
to be added
to be added