-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve README and add build instructions
- Loading branch information
Showing
1 changed file
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,27 @@ | ||
# Fullscore | ||
|
||
Music composition software in C++ using AllegroFlare+FlareGUI | ||
Fullscore is music composition software with 2 design priorities: | ||
|
||
# features | ||
1. Let the composer focus on the processes and techniques of modern music composition, theoretical concepts, structures, patterns, transformations, sets, cells, etc. | ||
2. Allow music to be edited and transformed as quickly and robustly as possible, either at the low-level or the high-level, regardless of the required learning curve. | ||
|
||
### How to get | ||
|
||
There are no binary releases yet so you will have to build from source. | ||
|
||
### Build Instructions | ||
|
||
Fullscore is written in C++ and requires AllegroFlare. If you're building with `gcc` or `clang` | ||
you should be able to compile Fullscore from the bash terminal by grabbing the | ||
source from the git repo: | ||
|
||
``` | ||
$ git clone https://github.com/MarkOates/fullscore.git | ||
``` | ||
|
||
and then building with make: | ||
|
||
``` | ||
$ make | ||
``` | ||
|
||
Fullscore is software that lets the composer focus on the processes and techniques of modern music composition, rather than fiddle with clumsy music notation. Composers interface with theoretical concepts, and build compositions using structures, patterns, transformations, sets, cells, and more. |