From efcdd889254fc98314dd48854d50e90aa21e53c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 26 Mar 2017 15:58:46 +0200 Subject: Initial cmake conversion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit 8b12682035e2ae92a29a9ce12abc5fbcf38b1192) --- mpeglib_artsplug/CMakeLists.txt | 109 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 mpeglib_artsplug/CMakeLists.txt (limited to 'mpeglib_artsplug') diff --git a/mpeglib_artsplug/CMakeLists.txt b/mpeglib_artsplug/CMakeLists.txt new file mode 100644 index 00000000..61ad25d4 --- /dev/null +++ b/mpeglib_artsplug/CMakeLists.txt @@ -0,0 +1,109 @@ +################################################# +# +# (C) 2017 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/mpeglib/lib + ${CMAKE_BINARY_DIR}/mpeglib/lib + ${CMAKE_BINARY_DIR} + ${ARTS_INCLUDE_DIRS} + ${ARTSC_INCLUDE_DIRS} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${ARTS_LIBRARY_DIRS} +) + + +##### arts_mpeglib (library) #################### + +tde_add_library( arts_mpeglib SHARED + SOURCES + decoderBaseObject.cc + splayPlayObject.cc + decoderBaseObject_impl.cpp + oggPlayObject_impl.cpp + mpgPlayObject_impl.cpp + wavPlayObject_impl.cpp + mp3PlayObject_impl.cpp + cddaPlayObject_impl.cpp + vcdPlayObject_impl.cpp + nullPlayObject_impl.cpp + RELEASE ${MPEGLIB_VERSION} + VERSION ${MPEGLIB_SO_VERSION} + LINK mpeg-shared ${ARTS_LIBRARIES} + DESTINATION ${LIB_INSTALL_DIR} +) + +add_custom_command( + OUTPUT + decoderBaseObject.cc decoderBaseObject.h + COMMAND ${ARTS_MCOPIDL_EXECUTABLE} + -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/decoderBaseObject.idl + DEPENDS decoderBaseObject.idl +) + + +##### arts_splay (library) ###################### + +tde_add_library( arts_splay SHARED + SOURCES + splayPlayObject.cc + splayPlayObject_impl.cpp + VERSION 0.0.0 + LINK mpeg-shared ${ARTS_LIBRARIES} + DESTINATION ${LIB_INSTALL_DIR} +) + +add_custom_command( + OUTPUT + splayPlayObject.cc splayPlayObject.h + COMMAND ${ARTS_MCOPIDL_EXECUTABLE} + -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/splayPlayObject.idl + DEPENDS splayPlayObject.idl +) + + +##### mpeglibartsplay (executable) ############## + +tde_add_executable( mpeglibartsplay + SOURCES mpeglibartsplay.cpp + LINK mcop kmedia2_idl soundserver_idl artsflow_idl ${ARTSC_LIBRARIES} + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( + FILES + decoderBaseObject_impl.h + ${CMAKE_CURRENT_BINARY_DIR}/decoderBaseObject.h + decoderBaseObject.idl + splayPlayObject_impl.h + ${CMAKE_CURRENT_BINARY_DIR}/splayPlayObject.h + splayPlayObject.idl + DESTINATION ${INCLUDE_INSTALL_DIR}/mpeglib_artsplug +) + +install( + FILES + WAVPlayObject.mcopclass + MP3PlayObject.mcopclass + OGGPlayObject.mcopclass + CDDAPlayObject.mcopclass + NULLPlayObject.mcopclass + SplayPlayObject.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop +) -- cgit v1.2.1