MuseScore is an open source and free music notation software. For support, contribution, bug reports, visit MuseScore.org. Fork and make pull requests!
Find a file
Alexander Pavlov a6ab311e28
Merge pull request #11319 from alexpavlov96/gp_ottava_tab_hide
fix #10326: hiding ottava signs on tab staff
2022-04-28 19:50:32 +03:00
.github added build videoexport for backend 2022-03-18 20:30:15 +06:00
.tx Remove all references to the "Tours" functionality 2021-10-14 23:04:23 +02:00
.vscode
assets
build Fix finding libsndfile for MSVC 2022-04-28 14:04:20 +03:00
demos updated tests and templates mscx files 2021-12-16 11:46:22 +03:00
doc
fonts removed FiraSans from the project (see #10751) 2022-04-21 11:38:48 +02:00
hooks
mtest updated tests and templates mscx files 2021-12-16 11:46:22 +03:00
rdoc
sandbox fixed conversion warnings 2022-04-26 16:51:10 +00:00
share reanimated autobot 2022-04-26 15:53:06 +00:00
src Merge pull request #11319 from alexpavlov96/gp_ottava_tab_hide 2022-04-28 19:50:32 +03:00
test updated tests and templates mscx files 2021-12-16 11:46:22 +03:00
thirdparty fixed conversion warnings 2022-04-26 16:51:10 +00:00
tools Fixed conversion warnings. Step 4 2022-04-27 17:17:13 +03:00
vtest added new v-tests 2022-04-14 15:37:43 +02:00
.git-blame-ignore-revs
.gitattributes
.gitignore Excluded unnecessary files via gitignore 2022-04-21 20:11:43 +02:00
build.cmake
CMakeLists.txt Added liblame thirdparties 2022-04-13 17:40:19 +02:00
CMakeSettings.json
Compatibility
config.cmake
CONTRIBUTING.md
Doxyfile.plugins
LICENSE.GPL Updating copyright to 2022 2021-12-10 20:49:30 +02:00
LICENSE.rtf Updating copyright to 2022 2021-12-10 20:49:30 +02:00
mscore3.txt
msvc_build.bat Remove all traces of Telemetry from build scripts et cetera 2021-12-13 11:35:19 +03:00
ninja_build.bat
ninja_build.sh fixed build videoexport option 2022-03-24 17:45:29 +06: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.GPL in the same directory.

Packages

See Code Structure on Wiki

Building

Read the developer handbook 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 mtest/README.md or the developer handbook for instructions on how to run the test suite.

The new script testing facility is also available to create your own automated tests. Please try it out!

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.