mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 10:25:36 +08:00
[hunspell] Avoid automatically added lib prefix (#14623)
* [hunspell] Avoid automatically added lib prefix * Update port version * Update CMakeLists.txt
This commit is contained in:
parent
eb895b95aa
commit
048d760168
@ -60,6 +60,10 @@ set(LIBHUNSPELL_HDRS
|
||||
|
||||
#hunspell/libhunspell
|
||||
add_library(libhunspell ${LIBHUNSPELL_HDRS} ${LIBHUNSPELL_SRCS})
|
||||
|
||||
#Avoid automatically added lib prefix 'lib' for hunspell
|
||||
set_target_properties(libhunspell PROPERTIES PREFIX "")
|
||||
|
||||
target_compile_definitions(libhunspell PRIVATE -DBUILDING_LIBHUNSPELL)
|
||||
install(TARGETS libhunspell
|
||||
ARCHIVE DESTINATION lib
|
||||
|
@ -1,5 +1,6 @@
|
||||
Source: hunspell
|
||||
Version: 1.7.0-1
|
||||
Version: 1.7.0
|
||||
Port-Version: 2
|
||||
Homepage: https://github.com/hunspell/hunspell
|
||||
Description: The most popular spellchecking library.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user