https://github.com/tildearrow/lowertriad
https://github.com/tildearrow/lowertriad
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tildearrow/lowertriad
- Owner: tildearrow
- License: mit
- Created: 2016-03-21T20:40:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-21T04:23:46.000Z (about 10 years ago)
- Last Synced: 2025-12-28T20:54:04.557Z (7 months ago)
- Language: C++
- Size: 95.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lowertriad
lowertriad is a game IDE attempt.
unlike most game IDEs, this one uses C++ for scripting, and compiles games using CMake and a C++ compiler.
## Dependencies
SDL2 (2.0.4) and SDL2_ttf
CMake 2.8 or later
Visual Studio 2015 or later (on Windows)
## Compiling
### Linux and OS X
install dependencies, then clone this repository and
```
mkdir build
cd build
cmake ..
make
```
### Windows
#### Warning: Due to asprintf (and Microsoft's compiler), Windows is not supported. Maybe next week.
install CMake and Visual Studio 2015, then clone this repository and
```
mkdir build
cd build
cmake ..
```
then open resulting solution in VS and Build > Build Solution.