MuseScore/src/framework/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.5 KiB
CMake
Raw Normal View History

# SPDX-License-Identifier: GPL-3.0-only
# MuseScore-CLA-applies
#
# MuseScore
# Music Composition & Notation
#
# Copyright (C) 2021 MuseScore BVBA and others
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-12-11 22:31:16 +01:00
#add_subdirectory(global)
2020-04-25 18:50:24 +02:00
add_subdirectory(ui)
add_subdirectory(uicomponents)
add_subdirectory(fonts)
2020-06-08 15:55:01 +02:00
add_subdirectory(actions)
2021-05-14 12:21:02 +02:00
add_subdirectory(accessibility)
2021-01-26 08:59:37 +01:00
if (BUILD_SHORTCUTS_MODULE)
add_subdirectory(shortcuts)
endif (BUILD_SHORTCUTS_MODULE)
2021-01-20 13:34:37 +01:00
if (BUILD_NETWORK_MODULE)
add_subdirectory(network)
endif (BUILD_NETWORK_MODULE)
2021-01-26 21:21:08 +01:00
if (BUILD_AUDIO_MODULE)
add_subdirectory(audio)
endif (BUILD_AUDIO_MODULE)
2020-07-28 14:28:52 +02:00
add_subdirectory(midi)
2021-10-29 16:42:42 +02:00
add_subdirectory(mpe)
2020-07-13 12:23:31 +02:00
2022-04-08 18:19:53 +02:00
if (BUILD_MUSESAMPLER_MODULE)
add_subdirectory(musesampler)
endif(BUILD_MUSESAMPLER_MODULE)
2020-06-29 16:48:29 +02:00
if (BUILD_UNIT_TESTS)
add_subdirectory(global/tests)
2021-10-29 16:42:42 +02:00
add_subdirectory(mpe/tests)
add_subdirectory(ui/tests)
add_subdirectory(accessibility/tests)
2020-06-29 16:48:29 +02:00
endif(BUILD_UNIT_TESTS)
2020-08-05 12:49:04 +02:00
if (BUILD_VST)
add_subdirectory(vst)
endif(BUILD_VST)