diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-03-26 15:58:46 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-03-26 15:59:04 +0200 |
commit | efcdd889254fc98314dd48854d50e90aa21e53c0 (patch) | |
tree | 5dc7034c23a5a18ca31d90225137f5eeaec809c4 /mpeglib_artsplug/CMakeLists.txt | |
parent | 25709e498d5832125f5f584bd10e3c66d05ec5ee (diff) | |
download | tdemultimedia-efcdd889254fc98314dd48854d50e90aa21e53c0.tar.gz tdemultimedia-efcdd889254fc98314dd48854d50e90aa21e53c0.zip |
Initial cmake conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 8b12682035e2ae92a29a9ce12abc5fbcf38b1192)
Diffstat (limited to 'mpeglib_artsplug/CMakeLists.txt')
-rw-r--r-- | mpeglib_artsplug/CMakeLists.txt | 109 |
1 files changed, 109 insertions, 0 deletions
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 +) |