# Import the target for ifcquery::carve
if(NOT TARGET ifcquery::carve)
include("${CMAKE_CURRENT_LIST_DIR}/carve-targets.cmake")
endif()
# Import the target for ifcquery::IfcPlusPlus
if(NOT TARGET ifcquery::IfcPlusPlus)
include("${CMAKE_CURRENT_LIST_DIR}/IfcPlusPlus-targets.cmake")
endif()
# For people who use old-fashioned cmake
set(IFCPP_LIBRARIES IFCPP::IfcPlusPlus)
# IFCPP_INCLUDE_DIRS is not needed, because users who link to
# IFCPP_LIBRARIES will automatically get the necessary include directories.
|