https://github.com/gdonald/tictactoe-cpp
TicTacToe in C++ using SDL2
https://github.com/gdonald/tictactoe-cpp
cpp game minimax sdl2 tic-tac-toe tictactoe
Last synced: 10 months ago
JSON representation
TicTacToe in C++ using SDL2
- Host: GitHub
- URL: https://github.com/gdonald/tictactoe-cpp
- Owner: gdonald
- License: gpl-2.0
- Created: 2019-12-19T23:03:15.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-07-16T00:30:37.000Z (almost 5 years ago)
- Last Synced: 2025-03-08T04:46:06.862Z (over 1 year ago)
- Topics: cpp, game, minimax, sdl2, tic-tac-toe, tictactoe
- Language: C++
- Size: 1.83 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## tictactoe-cpp
TicTacToe in C++ using SDL2

### Install SDL2 Dependencies
#### Mac OS
Install Xcode from the app store, and homebrew, then:
brew install cmake sdl2 sdl2_gfx sdl2_ttf sdl2_image
#### Debian Linux
apt install build-essential cmake clang \
libsdl2-dev libsdl2-gfx-dev \
libsdl2-ttf-dev libsdl2-image-dev
### Build
cmake .
make
### Run
./tictactoe