Go to file
Tim Warren 5302e5f679 Update language setup for CSS 2015-05-04 16:40:14 -04:00
config Update language setup for CSS 2015-05-04 16:40:14 -04:00
include A lot of makefile tweaks 2015-04-22 21:06:35 -04:00
resources Update Makefile for static building 2015-04-29 13:10:52 -04:00
src New file style matches open file style, fiddling with find/replace logic 2015-05-04 16:27:21 -04:00
tests Refactor Config classes 2015-04-29 17:03:15 -04:00
.gitignore Remove netbeans project, and augment gitignore 2015-04-29 21:36:46 -04:00
Makefile Update Makefile to use older SDK on OS X for more compatibility, but more setup for OS X 2015-05-04 16:26:23 -04:00
README.md Add menu images for Windows, update Windows readme 2015-04-28 16:14:04 -04:00
Windows-Build.md Start of find/replace functionality 2015-04-30 17:10:26 -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

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.