mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
19 lines
446 B
CMake
19 lines
446 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/kcontrol/kfontinst/lib/
|
|
${STRIGI_INCLUDE_DIR}
|
|
)
|
|
|
|
add_library(font MODULE FontThroughAnalyzer.cpp FontEngine.cpp)
|
|
|
|
target_link_libraries(font
|
|
${STRIGI_STREAMANALYZER_LIBRARY}
|
|
${FREETYPE_LIBRARIES}
|
|
${FONTCONFIG_LIBRARIES}
|
|
${KDE4_KIO_LIBS}
|
|
kfontinst
|
|
)
|
|
|
|
set_target_properties(font PROPERTIES PREFIX strigita_)
|
|
|
|
install(TARGETS font LIBRARY DESTINATION ${LIB_INSTALL_DIR}/strigi)
|
|
|