summaryrefslogtreecommitdiffstats
path: root/akode/lib
diff options
context:
space:
mode:
Diffstat (limited to 'akode/lib')
-rw-r--r--akode/lib/CMakeLists.txt100
-rw-r--r--akode/lib/akode_export.h.cmake53
2 files changed, 153 insertions, 0 deletions
diff --git a/akode/lib/CMakeLists.txt b/akode/lib/CMakeLists.txt
new file mode 100644
index 0000000..9ecb472
--- /dev/null
+++ b/akode/lib/CMakeLists.txt
@@ -0,0 +1,100 @@
+#################################################
+#
+# (C) 2015 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+)
+
+if( UNIX )
+ set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden" )
+ set( __KDE_HAVE_GCC_VISIBILITY 1 )
+endif( UNIX )
+configure_file( akode_export.h.cmake akode_export.h @ONLY )
+
+
+##### library ###################################
+
+set( target akode )
+
+set( ${target}_SRCS
+ bytebuffer.cpp
+ audiobuffer.cpp
+ pluginhandler.cpp
+ decoderpluginhandler.cpp
+ resamplerpluginhandler.cpp
+ sinkpluginhandler.cpp
+ encoderpluginhandler.cpp
+ fast_resampler.cpp
+ crossfader.cpp
+ volumefilter.cpp
+ localfile.cpp
+ mmapfile.cpp
+ wav_decoder.cpp
+ auto_sink.cpp
+ void_sink.cpp
+ converter.cpp
+ buffered_decoder.cpp
+ player.cpp
+ magic.cpp
+)
+
+tde_add_library(
+ ${target} SHARED
+ VERSION 2.0.0
+ SOURCES ${${target}_SRCS}
+ LINK ${CMAKE_THREAD_LIBS_INIT} ${AKODE_LIBDL} ${SEM_LIBRARIES}
+ DESTINATION ${LIB_INSTALL_DIR}
+)
+
+set_property(
+ TARGET ${target}-shared
+ APPEND PROPERTY COMPILE_DEFINITIONS
+ AKODE_SEARCHDIR="${LIB_INSTALL_DIR}"
+)
+
+
+##### headers ###################################
+
+set( ${target}_INCLUDES
+ ${CMAKE_CURRENT_BINARY_DIR}/akode_export.h
+ akodelib.h
+ decoder.h
+ sink.h
+ encoder.h
+ audioconfiguration.h
+ audioframe.h
+ audiobuffer.h
+ bytebuffer.h
+ file.h
+ localfile.h
+ mmapfile.h
+ pluginhandler.h
+ crossfader.h
+ volumefilter.h
+ resampler.h
+ fast_resampler.h
+ buffered_decoder.h
+ wav_decoder.h
+ auto_sink.h
+ void_sink.h
+ player.h
+ magic.h
+ converter.h
+ framedecoder.h
+)
+
+install(
+ FILES ${${target}_INCLUDES}
+ DESTINATION ${INCLUDE_INSTALL_DIR}/akode
+)
+
diff --git a/akode/lib/akode_export.h.cmake b/akode/lib/akode_export.h.cmake
new file mode 100644
index 0000000..7fc7fe8
--- /dev/null
+++ b/akode/lib/akode_export.h.cmake
@@ -0,0 +1,53 @@
+/* This file is part of the KDE libraries
+ Copyright (c) 2002-2003 KDE Team
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#ifndef AKODE_EXPORT_H
+#define AKODE_EXPORT_H
+
+#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
+
+/**
+ * The ARTS_NO_EXPORT macro marks the symbol of the given variable
+ * to be hidden. A hidden symbol is stripped during the linking step,
+ * so it can't be used from outside the resulting library, which is similar
+ * to static. However, static limits the visibility to the current
+ * compilation unit. hidden symbols can still be used in multiple compilation
+ * units.
+ *
+ * \code
+ * int AKODE_NO_EXPORT foo;
+ * int AKODE_EXPORT bar;
+ * \end
+ */
+
+#if defined(__KDE_HAVE_GCC_VISIBILITY)
+/* Visibility is available for GCC newer than 3.4.
+ * See: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9283
+ */
+#define AKODE_NO_EXPORT __attribute__ ((visibility("hidden")))
+#define AKODE_EXPORT __attribute__ ((visibility("default")))
+#elif defined(_WIN32)
+#define AKODE_NO_EXPORT
+#define AKODE_EXPORT __declspec(dllexport)
+#else
+#define AKODE_NO_EXPORT
+#define AKODE_EXPORT
+#endif
+
+#endif /* AKODE_EXPORTS */