Skip to content

Arthuchaut/TermSweeper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TermSweeper

A simple minesweeper written for console. Note : I had not yet tested on a UNIX system.

Building using GCC

First compile the files

gcc -c -Wall src/grid.c -o build/grid.o
gcc -c -Wall src/exception.c -o build/exception.o
gcc -c -Wall src/interface.c -o build/interface.o
gcc -c -Wall src/main.c -o build/main.o

Then create the executable and link the files

gcc -o build/termsweeper.exe \
build/main.o \
build/grid.o \
build/exception.o \
build/interface.o

About

A simple console minesweeper game.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published