An open API service indexing awesome lists of open source software.

https://github.com/cheems-dev/proyecto-computer-science-ii

VIdeojuego usando SFML y C++
https://github.com/cheems-dev/proyecto-computer-science-ii

Last synced: 11 months ago
JSON representation

VIdeojuego usando SFML y C++

Awesome Lists containing this project

README

          

# Proyecto Ciencias de la Computacion

## Linux - Ubuntu

- Plugins VSCode:

[EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig)

- Instalacion de librerias

```
sudo apt install build-essential
sudo apt install libsfml-dev
```

- Compilar un archivo

```
g++ main.cpp -lsfml-graphics -lsfml-window -lsfml-system -lsfml-audio
```

- Ejercutar nuestro programa

```
./a.out
```