From b86332376ca2753506286924f586b0ed37e245fb Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Fri, 6 Sep 2019 01:51:32 -0600 Subject: [PATCH] CMake: Move Assimp plugin to its own install component --- pandatool/src/assimp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandatool/src/assimp/CMakeLists.txt b/pandatool/src/assimp/CMakeLists.txt index d4758f2f61..536d15ec39 100644 --- a/pandatool/src/assimp/CMakeLists.txt +++ b/pandatool/src/assimp/CMakeLists.txt @@ -29,5 +29,5 @@ target_link_libraries(p3assimp PUBLIC PKG::ASSIMP) if(BUILD_SHARED_LIBS) # We can't install this if we're doing a static build, because it depends on # a static library that isn't installed. - install(TARGETS p3assimp EXPORT Tools COMPONENT Tools DESTINATION ${MODULE_DESTINATION}) + install(TARGETS p3assimp EXPORT Assimp COMPONENT Assimp DESTINATION ${MODULE_DESTINATION}) endif()