danimtb / flappy-frog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build and tests

Setup environment

Install Conan (preferably in a virtual environment)

pip install conan

Build and run locally

Note.- See docs/building.md for more detailed instructions

# using release as build type, it should match your default profile
mkdir cmake-build-release && cd cmake-build-release
conan install ..

Use your preferred IDE or tool to build, debug and develop the project, typically:

cmake .. -DCMAKE_MODULE_PATH=$(pwd) -DCMAKE_PREFIX_PATH=$(pwd) -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_INSTALL_PREFIX:PATH=$(pwd)/install
cmake --build .
cmake --install .

And enjoy

./install/bin/mygame

About

License:MIT License


Languages

Language:C++ 84.6%Language:CMake 15.4%