Fix: Wrong make deps xml2 library install on Linux and macOS

Order was swapped in refactoring in #123196.
This commit is contained in:
Brecht Van Lommel 2024-07-12 19:33:57 +02:00
parent 29873ea3d7
commit e70dac8f7e

View file

@ -40,9 +40,9 @@ endif()
if(UNIX)
if(APPLE)
harvest(external_xml2 xml2/lib opencollada/lib "*.a")
else()
harvest(external_xml2 xml2/include xml2/include "*.h")
harvest(external_xml2 xml2/lib xml2/lib "*.a")
else()
harvest(external_xml2 xml2/lib opencollada/lib "*.a")
endif()
endif()