jesusredondo / rouguelite_en_clase

Rouguelite desarrollado en la clase de DVRV

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to setup

  • Make sure you have the correct tools ready.
  • Create a new repository from ths template.
  • Clone your new repository.
  • Make sure to initialize the vcpkg and libtcod submodules. If either folder is empty then the build process will fail.
    • The command to do this is: git submodule update --init --recursive
  • Load this project in VS Code and install any recommended plugins. Most importantly: C/C++, C++ Intellisense, and CMake Tools.
  • Using the CMake Tools plugin you can now build and run this project. Dependencies will automatically be installed via Vcpkg.
    • On Windows, when CMake Tools asks for a toolkit you should select Visual Studio Community ... - amd64.
    • When CMake Tools asks for a project select libtcod-vcpkg-template.
  • The project will now build and run with F5. You should edit the CMakeLists.txt script as needed to expand your project.

Now that you know the template works you'll want to take care the following:

Configuring submodules

After you run git submodule update --init you can setup the submodules by going into their initialized submodule directories and checking out the desired commits. See the Git Documentation on Submodules.

To use the development versions of libtcod: change to the libtcod subdirectory and checkout the develop branch with git checkout develop. After that you can pull any updates to libtcod with git pull.

The Vcpkg submodule is updated in the same way. Checkout and pull the master branch to get the most recent ports.

About

Rouguelite desarrollado en la clase de DVRV

License:The Unlicense


Languages

Language:CMake 60.6%Language:C++ 39.4%