Go to file
theofficialgman 7b693b3080 CI: remove commented code in ARM setup
also adjust order of setup-arm.sh for eventual merging with setup.sh when either the distro QT is used for packaging or QT produces Linux ARM desktop QT
2024-05-20 11:40:13 +03:00
.github CI: ARM Linux switch to jammy and use distro QT 6.2.4 2024-05-20 11:40:13 +03:00
.tx Update transifex domain 2023-05-05 23:43:55 +02:00
buildscripts CI: remove commented code in ARM setup 2024-05-20 11:40:13 +03:00
demos Update source code headers in scripts & miscellaneous files (MuseScore Studio) 2024-04-15 09:11:05 +01:00
doc Update transifex domain 2023-05-05 23:43:55 +02:00
fonts Update source code headers in scripts & miscellaneous files (MuseScore Studio) 2024-04-15 09:11:05 +01:00
hooks Update source code headers in scripts & miscellaneous files (MuseScore Studio) 2024-04-15 09:11:05 +01:00
sandbox Remove traces of Qt 5 from buildscripts and ci 2024-05-14 15:08:48 +02:00
share Merge pull request #22896 from musescore/ci_lupdate_master 2024-05-19 14:59:13 +02:00
src Merge pull request #22898 from cbjeukendrup/update_musicxml_tests 2024-05-20 10:15:09 +03:00
test remove outdated musicxml files 2024-05-17 10:30:02 +02:00
thirdparty Update license headers (#22680) 2024-05-05 15:08:04 +02:00
tools use empty for checks 2024-05-17 14:22:29 +02:00
vtest Merge pull request #22804 from miiizen/18739-mmr-repeat 2024-05-17 09:43:28 +02: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 added buildscripts/packaging 2024-04-12 17:31:17 +03:00
.gitignore Remove traces of Qt 5 from buildscripts and ci 2024-05-14 15:08:48 +02:00
CMakeLists.txt Remove `MUE_COMPILE_QT5_COMPAT` CMake option 2024-05-13 23:08:52 +02:00
CMakePresets.json Update CMakePresets.json to remove dependencies and comments 2024-04-21 19:23:42 -04: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 Update source code headers in scripts & miscellaneous files (MuseScore Studio) 2024-04-15 09:11:05 +01:00
README.md formatting 2024-02-17 20:23:14 +01:00
SetupConfigure.cmake Remove `MUE_COMPILE_QT5_COMPAT` CMake option 2024-05-13 23:08:52 +02:00
build.cmake Prefer `qmake6` over `qmake` 2024-05-20 11:40:13 +03:00
mscore3.txt Spelling (#11566) 2022-05-15 16:35:32 +02:00
ninja_build.bat added Windows CI build with ninja 2021-01-12 16:53:03 +02:00
ninja_build.sh Remove traces of Qt 5 from buildscripts and ci 2024-05-14 15:08:48 +02:00
version.cmake Fixed installers 2024-04-19 16:02:04 +03: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
  • MEI 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.