Skip to content
Snippets Groups Projects
Commit b83f557a authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Merge branch 'xenhat/linux-build-fix' into 'main'

Fix LibXML2 linking on Linux

See merge request alchemy/alchemy-next!77
parents 233678e7 4c7060a3
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,10 @@ else(USESYSTEMLIBS) ...@@ -13,8 +13,10 @@ else(USESYSTEMLIBS)
debug ${ARCH_PREBUILT_DIRS_DEBUG}/libxml2_a.lib debug ${ARCH_PREBUILT_DIRS_DEBUG}/libxml2_a.lib
optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libxml2_a.lib optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libxml2_a.lib
) )
else() elseif(DARWIN)
set(LIBXML2_LIBRARIES xml2 iconv) set(LIBXML2_LIBRARIES xml2 iconv)
else()
set(LIBXML2_LIBRARIES xml2)
endif() endif()
set(LIBXML2_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libxml2) set(LIBXML2_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/libxml2)
endif(USESYSTEMLIBS) endif(USESYSTEMLIBS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment