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

https://github.com/pawelk5/atari-msc

ATARI Logo Interpreter for Motorola Science Cup 2021 (4th place)
https://github.com/pawelk5/atari-msc

cpp cpp20 imgui sfml

Last synced: 12 months ago
JSON representation

ATARI Logo Interpreter for Motorola Science Cup 2021 (4th place)

Awesome Lists containing this project

README

          

# atari-msc
ATARI Logo Interpreter
na Motorola Science Cup 2021
![grafika](https://user-images.githubusercontent.com/87194023/157021840-30df2b21-6e2e-4cc4-818c-283700c2858f.png)

## Budowanie
Do projektu są dołączone pliki CMake. Można wygenerować projekt np. do Visual Studio za pomocą polecenia:
```bat
cmake -G "Visual Studio 16"
```
i skompliować projekt w wybranym IDE

lub zbudować cały projekt korzystając z Make i CMake:

```sh
mkdir build
cd build
cmake -B . -S ..
make
cd ..
```
(projekt się buduje ale nie działa na systemie Linux)