Skip to content

C++ study project by creating a chessboard in the terminal and later upgraded it with OpenGL graphics.

Notifications You must be signed in to change notification settings

luisgomes2002/Chess-OpenGL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build e Execução com CMake

This project uses CMake for build management. Below are instructions for compiling and running on Linux and Windows.


🔧 Prerequisites

  • CMake (>= 3.10)
  • Compiler:
    • Linux → gcc or g++
    • Windows → MinGW or MSVC
  • Git (optional, if you want to clone the project directly)

🐧 Linux

# Clone the project (if you haven't already)
git clone https://github.com/luisgomes2002/Chess-OpenGL.git
cd projeto

# Create build folder
mkdir build && cd build

# Generate build files
cmake ..

# Compile
cmake --build .

# Run the program
./chess.exe

🪟 Windows

# Clone the project
git clone https://github.com/luisgomes2002/Chess-OpenGL.git
cd projeto

# Create build folder
mkdir build
cd build

# Generate build files
cmake .. -G "MinGW Makefiles"

# Compile
cmake --build .

# Run the program
./chess.exe

About

C++ study project by creating a chessboard in the terminal and later upgraded it with OpenGL graphics.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published