MuseScore/src/framework/CMakeLists.txt
2022-05-06 11:21:32 +03:00

56 lines
1.5 KiB
CMake

# 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/>.
#add_subdirectory(global)
add_subdirectory(ui)
add_subdirectory(uicomponents)
add_subdirectory(fonts)
add_subdirectory(actions)
add_subdirectory(accessibility)
if (BUILD_SHORTCUTS_MODULE)
add_subdirectory(shortcuts)
endif (BUILD_SHORTCUTS_MODULE)
if (BUILD_NETWORK_MODULE)
add_subdirectory(network)
endif (BUILD_NETWORK_MODULE)
if (BUILD_AUDIO_MODULE)
add_subdirectory(audio)
endif (BUILD_AUDIO_MODULE)
add_subdirectory(midi)
add_subdirectory(mpe)
if (BUILD_MUSESAMPLER_MODULE)
add_subdirectory(musesampler)
endif(BUILD_MUSESAMPLER_MODULE)
if (BUILD_UNIT_TESTS)
add_subdirectory(global/tests)
add_subdirectory(mpe/tests)
add_subdirectory(ui/tests)
add_subdirectory(accessibility/tests)
endif(BUILD_UNIT_TESTS)
if (BUILD_VST)
add_subdirectory(vst)
endif(BUILD_VST)