Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ponup/thiefcatcher
Open source clone of the game "Where in the world is Carmen San Diego?"
https://github.com/ponup/thiefcatcher
c-plus-plus cpp game puzzle sdl sdl2
Last synced: about 2 months ago
JSON representation
Open source clone of the game "Where in the world is Carmen San Diego?"
- Host: GitHub
- URL: https://github.com/ponup/thiefcatcher
- Owner: Ponup
- License: gpl-3.0
- Created: 2014-09-24T19:43:15.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-07T17:30:18.000Z (over 1 year ago)
- Last Synced: 2024-03-27T06:50:19.019Z (10 months ago)
- Topics: c-plus-plus, cpp, game, puzzle, sdl, sdl2
- Language: C++
- Size: 28.5 MB
- Stars: 32
- Watchers: 10
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Dependencies:
* CMake (3.18 or greater)
* conan (2.0.9 or greater)
* C++ 17
* SDL2
* SDL2 mixer
* SDL2 image
* SDL2 ttf
* SDL2 gfx
* sqlite3
* TinyXML2
* curlCloning the code:
```
git clone [email protected]:Ponup/thiefcatcher.git
git submodule update --init
```## How to build
### ...on Windows:
```shell
cmake -G "Visual Studio 14 2015" .
```### ...on Linux/Macos:
```shell
pushd Core && conan install . && popd
cmake .
make
```If you want to build with debug symbols use:
```
cmake -DCMAKE_BUILD_TYPE=debug .
```## How to run
```shell
cd Core
bin/ThiefCatcher
```