Gamedev Framework (gf)  0.9.0
A C++14 framework for 2D games
Use gf in your project

Use gf with CMake

At build time, gf generates a CMake module that is suitable for other projects. Once installed, it is very easy to import gf as a dependency. Here is a simple CMakeLists.txt for a projet that uses gf.

cmake_minimum_required(VERSION 3.0)
project(FOOGAME
VERSION 0.1.0
)
find_package(gf REQUIRED)
add_executable(foogame
foogame.cc
# and the rest of your sources
)
target_link_libraries(foogame
gf::gf0
)