blob: 03451f4bd6ff1a2a06e2522cb7a6315625a73078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### pluginloader
tde_add_library( pluginloader STATIC_PIC AUTOMOC
SOURCES
convertpluginloader.cpp formatinfoloader.cpp pluginloaderbase.cpp
replaygainpluginloader.cpp ripperpluginloader.cpp
)
|