From 5ef7bfd9e4d12ba510399ec2bb9ca55b4a341454 Mon Sep 17 00:00:00 2001 From: Macoy Madson Date: Sun, 13 Dec 2020 21:37:05 -0800 Subject: [PATCH] Added readme --- ReadMe.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ReadMe.org diff --git a/ReadMe.org b/ReadMe.org new file mode 100644 index 0000000..ee2c247 --- /dev/null +++ b/ReadMe.org @@ -0,0 +1,21 @@ +#+TITLE: Ogre Start Project + +This is for Ogre v2, aka. [[https://github.com/OGRECave/ogre-next][Ogre-next]]. + +See [[https://macoy.me/blog/programming/Ogre2Setup][this article]] for a step-by-step explanation of this setup. + +* Cloning +This repository includes Ogre and other dependencies as submodules. To clone properly: + +#+BEGIN_SRC sh +git clone --recurse-submodules https://github.com/makuto/ogre-start-project + +# Or, if you've already cloned without --recurse-submodules: +git submodule update --init --recursive +#+END_SRC + +You may also need to do this: +#+BEGIN_SRC sh +cd Dependencies/ogre-next-deps +git submodule update --init --recursive +#+END_SRC