mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
17 lines
519 B
CMake
17 lines
519 B
CMake
project(lokalize)
|
|
|
|
add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
|
|
|
|
find_package(HUNSPELL)
|
|
set_package_properties(
|
|
HUNSPELL PROPERTIES
|
|
DESCRIPTION "Library used for stemming"
|
|
URL "http://hunspell.sourceforge.net/"
|
|
TYPE REQUIRED
|
|
PURPOSE "Required to build Lokalize.")
|
|
|
|
include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES})
|
|
add_subdirectory(src)
|
|
add_subdirectory(scripts)
|
|
add_subdirectory(icons)
|
|
#add_subdirectory(strigi-analyzer)
|