YGNI-RType / GEngine

The game engine used to make our R-Type game
MIT License
0 stars 1 forks source link

How to install the GEngine to your project

include(cmake/automate-vcpkg-gengine.cmake)
vcpkg_bootstrap()
vcpkg_install_gengine()

It will install vcpkg and the GEngine package with all its dependencies.

find_package(GEngine CONFIG REQUIRED)
target_link_libraries(main PRIVATE GEngine)

It will link the GEngine to your project.