mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-27 22:59:53 +00:00
13 lines
472 B
Diff
13 lines
472 B
Diff
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -496,6 +496,9 @@ if(LIBXML2_WITH_PROGRAMS)
|
||
|
add_executable(LibXml2::${PROGRAM} ALIAS ${PROGRAM})
|
||
|
target_compile_definitions(${PROGRAM} PRIVATE SYSCONFDIR="${CMAKE_INSTALL_FULL_SYSCONFDIR}")
|
||
|
target_link_libraries(${PROGRAM} LibXml2)
|
||
|
+ if(LIBXML2_WITH_ICONV AND NOT Iconv_IS_BUILT_IN)
|
||
|
+ target_link_libraries(${PROGRAM} iconv)
|
||
|
+ endif()
|
||
|
if(HAVE_LIBHISTORY)
|
||
|
target_link_libraries(${PROGRAM} history)
|
||
|
endif()
|