Skip to content

Latest commit

 

History

14 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minesweeper-clone

This is a work-in-progress minesweeper clone. This project uses the original minesweeper assets extracted from The Spriters Resource.

How to run

As it is a CMake project it cna work in almost any machine.

To compile it create a build directory

mkdir build
cd build

And run CMake

cmake ..
# If you're using MinGW on windows, use the -G "MinGW Makefiles" option
# cmake -G "MinGW Makefiles" ..
# If using Visual Studio search for your version
# cmake -G "Visual Studio 17 2022" ..

When its done, you should have everything ready to compile, so make the Makefile and run it

make
# Use mingw32-make.exe if you're using MinGW or open the ".sln" file if in VS
./game

Here's all the commands:

  • Windows:

    mkdir build
    cd build
    cmake -G "MinGW Makefiles" ..
    mingw32-make

    If you're using Visual Studio, just open the solution instead of using Make

  • Mac OS / Linux

    mkdir build
    cd build
    cmake ..
    make

About

A work in progress C++ minesweeper clone

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages