Install Conan (preferably in a virtual environment)
pip install conan
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
# using release as build type, it should match your default profile
mkdir build-ios && cd build-ios
conan install .. -s build_type=Release -pr:b=default -pr:h=../.conan/profiles/ios --build=missing
conan install .. -s build_type=Debug -pr:b=default -pr:h=../.conan/profiles/ios --build=missing
cmake .. -G Xcode -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake
Open flappy-frog.xcodeproj and build.