2010-05-03 15:58:41 +02:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-03-16 06:34:49 +01:00
|
|
|
#ifndef CLEMENTINE_CONFIG_H
|
|
|
|
#define CLEMENTINE_CONFIG_H
|
2010-05-03 15:58:41 +02:00
|
|
|
|
2010-06-07 12:09:30 +02:00
|
|
|
#define CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}"
|
2011-04-29 21:44:51 +02:00
|
|
|
#define CMAKE_EXECUTABLE_SUFFIX "${CMAKE_EXECUTABLE_SUFFIX}"
|
2010-06-07 12:09:30 +02:00
|
|
|
|
2018-11-29 22:32:12 +01:00
|
|
|
#cmakedefine HAVE_VISUALISATIONS
|
2015-03-27 14:56:08 +01:00
|
|
|
#cmakedefine HAVE_AMAZON_CLOUD_DRIVE
|
2011-08-10 17:23:32 +02:00
|
|
|
#cmakedefine HAVE_AUDIOCD
|
2013-02-12 13:54:19 +01:00
|
|
|
#cmakedefine HAVE_BOX
|
2011-03-23 22:53:24 +01:00
|
|
|
#cmakedefine HAVE_BREAKPAD
|
2015-04-28 13:25:42 +02:00
|
|
|
#cmakedefine HAVE_CRYPTOPP
|
2010-12-26 18:24:44 +01:00
|
|
|
#cmakedefine HAVE_DBUS
|
2018-11-29 22:32:12 +01:00
|
|
|
#cmakedefine HAVE_X11
|
2011-04-12 00:06:44 +02:00
|
|
|
#cmakedefine HAVE_DEVICEKIT
|
2012-11-29 17:03:52 +01:00
|
|
|
#cmakedefine HAVE_DROPBOX
|
2010-07-17 16:22:07 +02:00
|
|
|
#cmakedefine HAVE_GIO
|
2012-07-27 10:25:45 +02:00
|
|
|
#cmakedefine HAVE_GOOGLE_DRIVE
|
2010-12-26 18:24:44 +01:00
|
|
|
#cmakedefine HAVE_LIBGPOD
|
2010-12-18 18:28:02 +01:00
|
|
|
#cmakedefine HAVE_LIBLASTFM
|
2012-06-28 18:41:51 +02:00
|
|
|
#cmakedefine HAVE_LIBLASTFM1
|
2010-12-26 18:24:44 +01:00
|
|
|
#cmakedefine HAVE_LIBMTP
|
2014-03-29 09:17:34 +01:00
|
|
|
#cmakedefine HAVE_LIBPULSE
|
2018-06-13 10:56:42 +02:00
|
|
|
#cmakedefine HAVE_ALSA
|
2012-05-27 18:28:07 +02:00
|
|
|
#cmakedefine HAVE_MOODBAR
|
2014-06-04 17:58:28 +02:00
|
|
|
#cmakedefine HAVE_SEAFILE
|
2012-12-12 18:34:15 +01:00
|
|
|
#cmakedefine HAVE_SKYDRIVE
|
2011-03-23 22:53:24 +01:00
|
|
|
#cmakedefine HAVE_SPARKLE
|
2013-09-17 17:09:56 +02:00
|
|
|
#cmakedefine HAVE_SPOTIFY_DOWNLOADER
|
2016-05-17 21:56:16 +02:00
|
|
|
#cmakedefine HAVE_UDISKS2
|
2011-03-23 22:53:24 +01:00
|
|
|
#cmakedefine HAVE_WIIMOTEDEV
|
2018-11-29 22:32:12 +01:00
|
|
|
#cmakedefine HAVE_OPENGL
|
|
|
|
#cmakedefine HAVE_TRANSLATIONS
|
|
|
|
#cmakedefine HAVE_SPOTIFY
|
2013-01-26 12:18:24 +01:00
|
|
|
#cmakedefine TAGLIB_HAS_OPUS
|
2011-03-23 22:53:24 +01:00
|
|
|
#cmakedefine USE_INSTALL_PREFIX
|
|
|
|
#cmakedefine USE_SYSTEM_PROJECTM
|
2014-09-25 15:09:13 +02:00
|
|
|
#cmakedefine USE_SYSTEM_SHA2
|
2018-11-29 22:32:12 +01:00
|
|
|
#cmakedefine USE_BUNDLE
|
|
|
|
|
|
|
|
#define USE_BUNDLE_DIR "${USE_BUNDLE_DIR}"
|
2011-01-06 17:00:40 +01:00
|
|
|
|
2021-03-16 06:34:49 +01:00
|
|
|
#endif // CLEMENTINE_CONFIG_H
|