You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
4.0 KiB
111 lines
4.0 KiB
15 years ago
|
# Rosegarden
|
||
|
# A MIDI and audio sequencer and musical notation editor.
|
||
|
#
|
||
|
# This program is Copyright 2000-2008
|
||
|
# Guillaume Laurent <glaurent@telegraph-road.org>,
|
||
|
# Chris Cannam <cannam@all-day-breakfast.com>,
|
||
|
# Richard Bown <richard.bown@ferventsoftware.com>
|
||
|
#
|
||
|
# The moral rights of Guillaume Laurent, Chris Cannam, and Richard
|
||
|
# Bown to claim authorship of this work have been asserted.
|
||
|
#
|
||
|
# This file is Copyright 2006-2008
|
||
|
# Pedro Lopez-Cabanillas <plcl@users.sourceforge.net>
|
||
|
#
|
||
|
# Other copyrights also apply to some parts of this work. Please
|
||
|
# see the AUTHORS file and individual file headers for details.
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License as
|
||
|
# published by the Free Software Foundation; either version 2 of the
|
||
|
# License, or (at your option) any later version. See the file
|
||
|
# COPYING included with this distribution for more information.
|
||
|
|
||
|
MESSAGE("\n"
|
||
|
"Installation Summary\n"
|
||
|
"--------------------\n"
|
||
|
"\n"
|
||
|
"Install Directory : ${CMAKE_INSTALL_PREFIX}\n"
|
||
|
"Build type : ${CMAKE_BUILD_TYPE}\n"
|
||
|
"Use Qt/KDE precompiled headers: ${USE_PCH}\n"
|
||
|
"\n"
|
||
|
"Xft notation font support : ${HAVE_XFT}")
|
||
|
|
||
|
IF(WANT_LIRC)
|
||
|
MESSAGE(
|
||
|
"LIRC infrared remote support : ${HAVE_LIRC}")
|
||
|
ELSE(WANT_LIRC)
|
||
|
MESSAGE("No LIRC support configured.")
|
||
|
ENDIF(WANT_LIRC)
|
||
|
|
||
|
MESSAGE("")
|
||
|
|
||
|
IF(WANT_SOUND)
|
||
|
MESSAGE(
|
||
|
"ALSA MIDI support : ${HAVE_ALSA}\n"
|
||
|
"JACK audio support : ${HAVE_JACK}\n"
|
||
|
"LADSPA plugin support : ${HAVE_LADSPA}\n"
|
||
|
"DSSI synth plugin support : ${HAVE_DSSI}\n"
|
||
|
"Custom OSC plugin GUI support : ${HAVE_LIBLO}\n"
|
||
|
"Audio timestretching : ${HAVE_FFTW3F}\n"
|
||
|
"LRDF plugin metadata support : ${HAVE_LIBLRDF}")
|
||
|
ELSE(WANT_SOUND)
|
||
|
MESSAGE("No sound support configured.")
|
||
|
ENDIF(WANT_SOUND)
|
||
|
|
||
|
IF(NOT HAVE_XFT)
|
||
|
MESSAGE("\n* Score rendering quality and performance may be\n"
|
||
|
"improved if Xft 2.1.0 and Freetype 2 are available, to permit\n"
|
||
|
"Rosegarden to override the Qt font selection mechanism. It\n"
|
||
|
"may not be worth trying to install them if they aren't already\n"
|
||
|
"present in your distribution though.")
|
||
|
ENDIF(NOT HAVE_XFT)
|
||
|
|
||
|
IF(WANT_SOUND)
|
||
|
|
||
|
IF(NOT HAVE_ALSA)
|
||
|
MESSAGE("\n* Rosegarden requires the ALSA (Advanced Linux Sound Architecture) drivers\n"
|
||
|
"for MIDI, and the JACK audio framework for audio sequencing.\n"
|
||
|
"Please see the documentation at http://www.rosegardenmusic.com/getting/\n"
|
||
|
"for more information about these dependencies.")
|
||
|
ENDIF(NOT HAVE_ALSA)
|
||
|
|
||
|
IF(NOT HAVE_JACK)
|
||
|
MESSAGE("\n* Rosegarden uses the JACK audio server for audio recording and\n"
|
||
|
"sequencing. See http://jackit.sf.net/ for more information about\n"
|
||
|
"getting and installing JACK. If you want to use Rosegarden only\n"
|
||
|
"for MIDI, then you do not need JACK.")
|
||
|
ENDIF(NOT HAVE_JACK)
|
||
|
|
||
|
IF(NOT HAVE_LADSPA)
|
||
|
MESSAGE("\n* Rosegarden supports LADSPA audio plugins if available. See\n"
|
||
|
"http://www.ladspa.org/ for more information about LADSPA. To\n"
|
||
|
"build LADSPA support into Rosegarden, you need to make sure\n"
|
||
|
"you have ladspa.h available on your system.")
|
||
|
ENDIF(NOT HAVE_LADSPA)
|
||
|
|
||
|
IF(NOT HAVE_DSSI)
|
||
|
MESSAGE("\n* Rosegarden supports DSSI audio plugins if available. See\n"
|
||
|
"http://dssi.sf.net/ for more information about DSSI. To\n"
|
||
|
"build DSSI support into Rosegarden, you need to make sure\n"
|
||
|
"you have dssi.h available on your system.")
|
||
|
ENDIF(NOT HAVE_DSSI)
|
||
|
|
||
|
IF(NOT HAVE_LIBLO)
|
||
|
MESSAGE("\n* Rosegarden supports custom GUIs for DSSI (and LADSPA) plugins using\n"
|
||
|
"the Open Sound Control protocol, if the Lite OSC library liblo is\n"
|
||
|
"available. Go to http://www.plugin.org.uk/liblo/ to obtain liblo\n"
|
||
|
"and http://dssi.sf.net/ for more information about DSSI GUIs.")
|
||
|
ENDIF(NOT HAVE_LIBLO)
|
||
|
|
||
|
IF(NOT HAVE_LIBLRDF)
|
||
|
MESSAGE("\n* Rosegarden supports the LRDF metadata format for classification\n"
|
||
|
"of LADSPA and DSSI plugins. This will improve the usability of\n"
|
||
|
"plugin selection dialogs. You can obtain LRDF from\n"
|
||
|
"http://www.plugin.org.uk/lrdf/.")
|
||
|
ENDIF(NOT HAVE_LIBLRDF)
|
||
|
|
||
|
ENDIF(WANT_SOUND)
|
||
|
|
||
|
MESSAGE("")
|