Files
assimp/contrib/CMakeLists.txt
Andy Maloney 046f50880f {cmake} Prefix assimp options with "ASSIMP_" to avoid pollution when included as a submodule
When libraries are included as submodules in large projects, having an option with a generic name like "BUILD_DOCS" is not very helpful. (e.g. one project I work on includes many libraries as submodules)

It can also clash with options from other libraries which can break things.
2020-03-23 12:35:32 -04:00

5 lines
126 B
CMake

# Compile internal irrXML only if system is not requested
if( NOT ASSIMP_SYSTEM_IRRXML )
add_subdirectory(irrXML)
endif()