Skip to content

Commit

Permalink
Added Hunspell library as external_hunspell.
Browse files Browse the repository at this point in the history
  • Loading branch information
23rd committed Feb 24, 2020
1 parent 53589d6 commit 27b7b99
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ endif()
add_subdirectory(expected)
add_subdirectory(ffmpeg)
add_subdirectory(gsl)
add_subdirectory(hunspell)
add_subdirectory(iconv)
add_subdirectory(lz4)
add_subdirectory(openal)
Expand Down
52 changes: 52 additions & 0 deletions external/hunspell/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL

add_library(external_hunspell OBJECT)
add_library(desktop-app::external_hunspell ALIAS external_hunspell)
init_target(external_hunspell "(external)")

set(hunspell_loc ${third_party_loc}/hunspell)
set(hunspell_src ${hunspell_loc}/src)

nice_target_sources(external_hunspell ${hunspell_src}
PRIVATE
hunspell/affentry.cxx
hunspell/affentry.hxx
hunspell/affixmgr.cxx
hunspell/affixmgr.hxx
hunspell/atypes.hxx
hunspell/baseaffix.hxx
hunspell/csutil.cxx
hunspell/csutil.hxx
hunspell/filemgr.cxx
hunspell/filemgr.hxx
hunspell/hashmgr.cxx
hunspell/hashmgr.hxx
hunspell/htypes.hxx
hunspell/hunspell.cxx
hunspell/hunspell.h
hunspell/hunspell.hxx
hunspell/hunvisapi.h
hunspell/hunzip.cxx
hunspell/hunzip.hxx
hunspell/phonet.cxx
hunspell/phonet.hxx
hunspell/replist.cxx
hunspell/replist.hxx
hunspell/suggestmgr.cxx
hunspell/suggestmgr.hxx
hunspell/utf_info.hxx
)

target_include_directories(external_hunspell
PUBLIC
${hunspell_src}
)

target_compile_definitions(external_hunspell
PUBLIC
HUNSPELL_STATIC
)

0 comments on commit 27b7b99

Please sign in to comment.