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.
5 lines
126 B
CMake
5 lines
126 B
CMake
# Compile internal irrXML only if system is not requested
|
|
if( NOT ASSIMP_SYSTEM_IRRXML )
|
|
add_subdirectory(irrXML)
|
|
endif()
|