Tyro/README.md

52 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2017-01-25 12:03:03 -05:00
# Tyro
2015-03-30 16:38:52 -04:00
A Cross-platform Code Editor
## Planned Features
2015-03-30 16:38:52 -04:00
* Syntax Highlighting
* Line Numbers
* Custom Syntax themes
* SFTP editing
## Building
2015-04-02 14:20:35 -04:00
### Linux (Ubuntu/Debian)
Required packages:
* build-essential
2019-06-03 11:14:38 -04:00
* cmake
* libssh2-1-dev
2019-06-18 11:22:49 -04:00
* libwxgtk3.0-dev or libwxgtk3.0-gtk3-dev
After these packages are installed, the project should build with a simple `make` command.
### OS X
2019-06-03 11:14:38 -04:00
Install wxWidgets library (Using homebrew):
* `brew install wxmac`
Install libssh2 (Using homebrew):
* `brew install libssh2`
Build the app:
* `make Tyro.app`
### Windows
2015-04-02 14:20:35 -04:00
2019-06-18 11:22:49 -04:00
* Todo
## Make commands
Please note that make commands are chainable. For a typical programming loop, `make clean dev run` is very useful.
* all - Make a release binary in the build folder
* clean - Remove intermediate build files
* dev - Make a development binary in the build folder
* run - Run the current binary in the build folder
* release - Make a release binary, with the appropriate resources compiled in. Makes an app bundle on OS X, and adds the icon to the program on Windows.
2015-11-03 13:30:00 -05:00