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
Aaron Sattely 01c150ec75 add vtest
2023-03-14 10:56:09 -04:00
.github Added schedule for backend 2023-03-13 14:47:27 +02:00
.tx Add the "instruments" resource to .tx/config 2022-07-30 03:56:19 +02:00
.vscode removed aeolus 2020-12-02 16:22:33 +02:00
build added build and pack script for vtests on CI 2023-03-13 10:15:15 -05:00
demos updated tests and templates mscx files 2021-12-16 11:46:22 +03:00
doc Update plugins.md 2021-06-08 09:15:39 -07:00
fonts Fix #13761: Implement Lyrics Properties in Inspector 2022-10-17 11:24:53 +05:30
hooks Updated license headers in .sh files 2021-04-19 17:10:01 +02:00
sandbox removed config.h 2023-02-14 15:51:40 +02:00
share Run lupdate 2023-03-03 19:33:38 +01:00
src fix utest for slightly better grace note stem length outside staff 2023-03-14 10:56:09 -04:00
test Spelling (#11566) 2022-05-15 16:35:32 +02:00
thirdparty Fix MSVC compiler warnings 2023-02-23 10:16:12 +02:00
tools added scan files for codestyle 2023-03-09 13:38:52 +02:00
vtest add vtest 2023-03-14 10:56:09 -04: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 added required modules for vtest (old) configuration 2023-03-14 06:59:23 -05:00
build.cmake renamed some cmake project options 2023-02-14 15:51:40 +02:00
CMakeLists.txt added required modules for vtest (old) configuration 2023-03-14 06:59:23 -05:00
CMakeSettings.json renamed some cmake project options 2023-02-14 15:51:40 +02:00
Compatibility enhanced 1.2 import 2012-08-23 12:28:27 +02:00
CONTRIBUTING.md fix #124416: Add Contributing.md 2021-05-13 16:18:43 +01:00
Doxyfile.plugins Spelling (#11566) 2022-05-15 16:35:32 +02:00
LICENSE.GPL Updating copyright to 2023 2023-01-05 19:20:47 +01: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 added use utest configuration on CI 2023-02-17 13:48:05 +02:00
README.md Update and clean up the app icons and file icons 2022-05-26 18:15:51 +03:00
SetupConfigure.cmake added required modules for vtest (old) configuration 2023-03-14 06:59:23 -05:00
version.cmake removed config.h 2023-02-14 15:51:40 +02:00

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.