2a227085fc
LMMS is a music production program. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arrangement of samples. You can have fun with your MIDI keyboard and much more. Features: * Song Editor for composing songs * A Beat+Bassline Editor for creating beats and basslines * An easy to use Piano Roll for editing patterns and melodies * An FX mixer with 64 FX channels and arbitrary number of effects allow unlimited mixing possibilities * Many powerful instrument and effects plugins out of the box * Full user defined track based automation and computer controlled automation sources * Compatible with many standards such as SoundFont2, LADSPA, and full MIDI support * Import of MIDI and FLP (Frootyloops Project) files import requested by armani@, some midi bits improved by ratchov@, reviewed by ratchov@ and stsp@ "why isn't that imported yet" from several
33 lines
957 B
CMake
33 lines
957 B
CMake
# sndio check, based on FindAlsa.cmake
|
|
#
|
|
|
|
# Copyright (c) 2006, David Faure, <faure@kde.org>
|
|
# Copyright (c) 2007, Matthias Kretz <kretz@kde.org>
|
|
# Copyright (c) 2009, Jacob Meuser <jakemsr@sdf.lonestar.org>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
include(CheckIncludeFiles)
|
|
include(CheckIncludeFileCXX)
|
|
include(CheckLibraryExists)
|
|
|
|
# Already done by toplevel
|
|
find_library(SNDIO_LIBRARY sndio)
|
|
set(SNDIO_LIBRARY_DIR "")
|
|
if(SNDIO_LIBRARY)
|
|
get_filename_component(SNDIO_LIBRARY_DIR ${SNDIO_LIBRARY} PATH)
|
|
endif(SNDIO_LIBRARY)
|
|
|
|
check_library_exists(sndio sio_open "${SNDIO_LIBRARY_DIR}" HAVE_SNDIO)
|
|
if(HAVE_SNDIO)
|
|
message(STATUS "Found sndio: ${SNDIO_LIBRARY}")
|
|
else(HAVE_SNDIO)
|
|
message(STATUS "sndio not found")
|
|
endif(HAVE_SNDIO)
|
|
set(SNDIO_FOUND ${HAVE_SNDIO})
|
|
|
|
find_path(SNDIO_INCLUDES sndio.h)
|
|
|
|
mark_as_advanced(SNDIO_INCLUDES SNDIO_LIBRARY)
|