summaryrefslogtreecommitdiffstats
path: root/xine_artsplugin/CMakeLists.txt
blob: 1013d3a9fa204d47b794819a5c1476e2a264ebe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#################################################
#
#  (C) 2017 Slávek Banko
#  slavek (DOT) banko (AT) axis.cz
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

include( ConfigureChecks.cmake )

add_subdirectory( tools )

include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_BINARY_DIR}
  ${ARTS_INCLUDE_DIRS}
  ${XINE_INCLUDE_DIRS}
  ${TQT_INCLUDE_DIRS}
  ${TDE_INCLUDE_DIR}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
  ${ARTS_LIBRARY_DIRS}
  ${XINE_LIBRARY_DIRS}
)


##### arts_xine (library) #######################

tde_add_library( arts_xine SHARED AUTOMOC
  SOURCES
    xinePlayObject.cc
    xinePlayObject_impl.cpp
    audio_fifo_out.c
  VERSION 0.0.0
  LINK
    mcop kmedia2_idl soundserver_idl artsflow artsflow_idl
    ${ARTS_LIBRARIES} ${XINE_LIBRARIES} ${XEXT_LIBRARIES} X11 pthread
  DESTINATION ${LIB_INSTALL_DIR}
)

add_custom_command(
  OUTPUT
    xinePlayObject.cc xinePlayObject.h
  COMMAND ${ARTS_MCOPIDL_EXECUTABLE}
    -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/xinePlayObject.idl
  DEPENDS xinePlayObject.idl
)


##### other data ################################

install(
  FILES
    xineAudioPlayObject.mcopclass
    xineVideoPlayObject.mcopclass
  DESTINATION ${LIB_INSTALL_DIR}/mcop
)