MuseScore is an open source and free music notation software. For support, contribution, bug reports, visit MuseScore.org. Fork and make pull requests!
Go to file
Elnur Ismailzada fbf16ab1e1
Merge pull request #20229 from Eism/string_tunings_flats
fixed #19959: Alternate tuning presets need refining
2023-11-29 13:49:35 +02:00
.github Merge pull request #20192 from cbjeukendrup/issue_form_add_accessibility_issue_type 2023-11-27 11:14:29 +01:00
.tx Update transifex domain 2023-05-05 23:43:55 +02:00
build replace wget with curl due to armhf bug 2023-11-23 14:47:40 +02:00
demos Update tests, templates, demos 2023-10-28 00:02:16 +02:00
doc Update transifex domain 2023-05-05 23:43:55 +02:00
fonts Include new icons for Tie style selector 2023-11-14 17:49:27 +01:00
hooks Uncrustify: Faster pre-commit hook to fix code style 2023-04-10 12:52:37 +01:00
sandbox [engraving] rename libmscore to dom 2023-09-04 18:06:48 +03:00
share Added Dropped D preset 2023-11-29 11:15:30 +02:00
src Merge pull request #20229 from Eism/string_tunings_flats 2023-11-29 13:49:35 +02:00
test Spelling (#11566) 2022-05-15 16:35:32 +02:00
thirdparty fix crashpad unable to build with GLIBC >= 2.27 in C++17 2023-11-23 14:47:40 +02:00
tools Check for straight quotes and other errors in translatable strings 2023-11-01 20:50:39 +00:00
vtest Several refinements and improvements of ties 2023-11-24 15:55:26 +01:00
.clangd Add support for additional tools 2023-07-24 11:30:22 +03:00
.git-blame-ignore-revs Update .git-blame-ignore-revs 2021-04-19 22:29:45 +02:00
.gitattributes ONE BUILD SCRIPT TO RULE THEM ALL! 2021-03-05 12:30:31 +02:00
.gitignore rm .vscode folder 2023-11-16 22:34:32 +01:00
CMakeLists.txt [engraving] improved layout performance 2023-11-23 11:01:05 +02:00
CMakeSettings.json renamed some cmake project options 2023-02-14 15:51:40 +02:00
CONTRIBUTING.md fix #124416: Add Contributing.md 2021-05-13 16:18:43 +01:00
Compatibility enhanced 1.2 import 2012-08-23 12:28:27 +02:00
Doxyfile.plugins Spelling (#11566) 2022-05-15 16:35:32 +02:00
LICENSE.txt Fix #18469: Rename LICENSE.GPL -> LICENSE.txt so Github detects it 2023-07-13 18:43:19 -04:00
README.md Fixed title and link for license 2023-11-15 10:41:57 +02:00
SetupConfigure.cmake updated profiler 2023-10-30 10:49:25 +02:00
build.cmake renamed some cmake project options 2023-02-14 15:51:40 +02:00
mscore3.txt Spelling (#11566) 2022-05-15 16:35:32 +02:00
msvc_build.bat removed config.h 2023-02-14 15:51:40 +02:00
ninja_build.bat added Windows CI build with ninja 2021-01-12 16:53:03 +02:00
ninja_build.sh CI: just run lrelease during build 2023-10-16 11:53:40 +02:00
version.cmake master is now 4.3.0 2023-11-24 12:42:32 +02:00

README.md

MuseScore

Music notation and composition software

License: GPL v3

MuseScore is an open source and free music notation software. For support, contribution, and bug reports visit MuseScore.org. Fork and make pull requests!

Features

  • WYSIWYG design, notes are entered on a "virtual notepaper"
  • TrueType font(s) for printing & display allows for high quality scaling to all sizes
  • Easy & fast note entry
  • Many editing functions
  • MusicXML import/export
  • MIDI (SMF) import/export
  • MuseData import
  • MIDI input for note entry
  • Integrated sequencer and software synthesizer to play the score
  • Print or create pdf files

More info

License

MuseScore is licensed under GPL version 3.0. See license file in the same directory.

Packages

See Code Structure on Wiki

Building

Read the Compilation section of the MuseScore Wiki for a complete build walkthrough and a list of dependencies.

Getting sources

If using git to download repo of entire code history, type:

git clone https://github.com/musescore/MuseScore.git
cd MuseScore

Otherwise, you can just download the latest source release tarball from the Releases page, and then from your download directory type:

tar xzf MuseScore-x.x.x.tar.gz
cd MuseScore-x.x.x

Release Build

To compile MuseScore for release, type:

cmake -P build.cmake -DCMAKE_BUILD_TYPE=Release

If something goes wrong, append the word "clean" to the above command to delete the build subdirectory:

cmake -P build.cmake -DCMAKE_BUILD_TYPE=Release clean

Then try running the first command again.

Running

To start MuseScore, type:

cmake -P build.cmake -DCMAKE_BUILD_TYPE=Release run

Or run the compiled executable directly.

Debug Build

A debug version can be built and run by replacing -DCMAKE_BUILD_TYPE=Release with -DCMAKE_BUILD_TYPE=Debug in the above commands.

If you omit the -DCMAKE_BUILD_TYPE option entirely then RelWithDebInfo is used by default, as it provides a useful compromise between Release and Debug.

Testing

See the Unit tests section of the MuseScore Wiki for instructions on how to run the test suite.

Code Formatting

Run ./hooks/install.sh to install a pre-commit hook that will format your staged files. Requires that you install uncrustify.

If you have problems, please report them. To uninstall, run ./hooks/uninstall.sh.