mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
3858932ec4
* feat!: add libzim dependency * 🎨 apply clang-format changes * action: add libzim dependency to action * feat!: change dependency folder * action: add zim support * feat!: add libzim support * action: fix sonarcloud check * doc: add libzim readme * action: cmake build * action: cmake check * fix: code smell * action: cmake check * action: cmake on Macos * action: cmake on Macos * feat: use libzim to read title and description * 🎨 apply clang-format changes * feat: split zim file support * feat: loadArticle refactor * 🎨 apply clang-format changes * 🎨 apply clang-format changes * feat: update library and goldendict.pro * 🎨 apply clang-format changes * fix:word count * 🎨 apply clang-format changes * fix: video src url subsititue * 🎨 apply clang-format changes * zim: headword is not usually a valid it is from title and url. * fix: remove nested try catch * zim: fix resource loading issue. * 🎨 apply clang-format changes * action: remove libao * zim: process url some old zim dictionary url does not contain namespace such as /C/url make the old and new zim dictionary's url consistent without the leading ../C/ etc. * 🎨 apply clang-format changes * zim: process url remove leading dot and slash such as ../-/assets ,remove ../ * 🎨 apply clang-format changes * zim: remove resourceIndex creation use libzim to read the resource directly. * zim: only iterate all the articles * 🎨 apply clang-format changes * fix: code smell * 🎨 apply clang-format changes * zim: refactor method to convert url to wstring * 🎨 apply clang-format changes * fix:code smell * 🎨 apply clang-format changes * zim: update windows dependencies * zim: add mutex lock * 🎨 apply clang-format changes * fix: code smell * 🎨 apply clang-format changes --------- Co-authored-by: xiaoyifang <xiaoyifang@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
80 lines
2 KiB
CMake
80 lines
2 KiB
CMake
#### Include Paths
|
|
|
|
if (APPLE)
|
|
# old & new homebrew's include paths
|
|
target_include_directories(${GOLDENDICT} PRIVATE /usr/local/include /opt/homebrew/include)
|
|
endif ()
|
|
|
|
target_include_directories(${GOLDENDICT} PRIVATE
|
|
${PROJECT_SOURCE_DIR}/thirdparty)
|
|
|
|
#### Special Platform supporting libraries
|
|
|
|
if (LINUX OR BSD)
|
|
find_package(X11 REQUIRED)
|
|
pkg_check_modules(LIBXTST IMPORTED_TARGET xtst)
|
|
target_compile_definitions(${GOLDENDICT} PUBLIC HAVE_X11)
|
|
target_link_libraries(${GOLDENDICT} PRIVATE X11 PkgConfig::LIBXTST)
|
|
endif ()
|
|
|
|
if (APPLE)
|
|
find_library(CARBON_LIBRARY Carbon REQUIRED)
|
|
target_link_libraries(${GOLDENDICT} PRIVATE ${CARBON_LIBRARY})
|
|
endif ()
|
|
|
|
##### Finding packages from package manager
|
|
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
# Provided by Cmake
|
|
find_package(ZLIB REQUIRED)
|
|
find_package(BZip2 REQUIRED)
|
|
find_package(Iconv REQUIRED)
|
|
|
|
|
|
# Consider all PkgConfig dependencies as one
|
|
pkg_check_modules(PKGCONFIG_DEPS IMPORTED_TARGET
|
|
hunspell
|
|
lzo2
|
|
opencc
|
|
vorbis # .ogg
|
|
vorbisfile
|
|
liblzma
|
|
libzstd
|
|
)
|
|
|
|
target_link_libraries(${GOLDENDICT} PRIVATE
|
|
# pkg-config packages need manually link
|
|
PkgConfig::PKGCONFIG_DEPS
|
|
BZip2::BZip2
|
|
ZLIB::ZLIB #hidden requirement of dsl_details.cc and more?
|
|
Iconv::Iconv
|
|
)
|
|
|
|
if (WITH_FFMPEG_PLAYER)
|
|
pkg_check_modules(FFMPEG REQUIRED IMPORTED_TARGET
|
|
libavcodec
|
|
libavformat
|
|
libavutil
|
|
libswresample
|
|
)
|
|
target_link_libraries(${GOLDENDICT} PRIVATE PkgConfig::FFMPEG)
|
|
endif ()
|
|
|
|
if (WITH_XAPIAN)
|
|
find_package(Xapian REQUIRED) # https://github.com/xapian/xapian/tree/master/xapian-core/cmake
|
|
target_link_libraries(${GOLDENDICT} PRIVATE ${XAPIAN_LIBRARIES})
|
|
endif ()
|
|
|
|
if (WITH_EPWING_SUPPORT)
|
|
add_subdirectory(thirdparty/eb)
|
|
target_link_libraries(${GOLDENDICT} PRIVATE eb)
|
|
endif ()
|
|
|
|
if(WITH_ZIM)
|
|
pkg_check_modules(ZIM REQUIRED IMPORTED_TARGET
|
|
libzim
|
|
)
|
|
target_link_libraries(${GOLDENDICT} PRIVATE PkgConfig::ZIM)
|
|
endif()
|