Go to file
Tim Warren cd9ef14192 Add new program icon to windows/mac 2015-04-27 11:24:04 -04:00
config Open multiple files, and toggle viewing of whitespace characters 2015-04-23 16:40:59 -04:00
include A lot of makefile tweaks 2015-04-22 21:06:35 -04:00
nbproject Update netbeans project to match source 2015-04-15 09:48:17 -04:00
resources Add new program icon to windows/mac 2015-04-27 11:24:04 -04:00
src Add new program icon to windows/mac 2015-04-27 11:24:04 -04:00
tests Make SFTP class more C++ like 2015-04-08 11:06:24 -04:00
.gitignore Fix makefile for windows build 2015-04-15 09:56:00 -04:00
Makefile Open multiple files, and toggle viewing of whitespace characters 2015-04-23 16:40:59 -04:00
README.md Update readme and start on Windows build instructions 2015-04-24 16:50:46 -04:00
Windows-Build.md Update readme and start on Windows build instructions 2015-04-24 16:50:46 -04:00

README.md

#Tyro

A Cross-platform Code Editor

Planned Features

  • Syntax Highlighting
  • Line Numbers
  • Custom Syntax themes
  • SFTP editing

Building

Linux (Ubuntu/Debian)

Required packages:

  • build-essential
  • libwxgtk3.0-dev
  • libssh2-1-dev

Optional:

  • libwxgtk3.0-0-dbg
  • libssh2-1-dbg

After these packages are installed, the project should build with a simple make command.

OS X

Building wxWidgets:

  1. Download the latest wxWidgets source
  2. Make a new directory in the source tree, like wxmac
  3. Run ../configure --disable-shared --disable-webviewwebkit in the new directory
  4. Run make && make install

Install libssh2 (Using homebrew):

  • brew install libssh2

Build the app:

  • make Tyro.app

Windows

See the guide for building on Windows: Windows-Build