C. J. Howard c171372601 | 7 years ago | |
---|---|---|
cmake/modules | 7 years ago | |
data@5c2d9e19f1 | 7 years ago | |
lib | 7 years ago | |
src | 7 years ago | |
.gitignore | 7 years ago | |
.gitmodules | 7 years ago | |
CMakeLists.txt | 7 years ago | |
COPYING | 7 years ago | |
README.md | 7 years ago |
Antkeeper is an ant colony simulation game. This repository contains all of the source code to Antkeeper. The game data, however, is proprietary and resides in a closed-source Git submodule.
Use Git to download the antkeeper
repository and its submodules:
git clone --recursive https://github.com/cjhoward/antkeeper.git antkeeper
Antkeeper uses the CMake build system for configuration.
cd antkeeper
cmake . -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DPLATFORM=win32 -DLANGUAGE=en-us
cmake --build .
If any changes have been made to the submodules, commit those first. Each submodule can then be updated to their latest commits with the following command:
git submodule update --recursive --remote
cmake --build . --target run
First perform a dry run to check what will be deleted:
git clean -d -f -x -n
If there are no issues, clean:
git clean -d -f -x
The source code for Antkeeper is licensed under the GNU General Public License, version 3. See COPYING for details.