diff --git a/panda/src/cocoadisplay/CMakeLists.txt b/panda/src/cocoadisplay/CMakeLists.txt index 5cea117227..6bcef03b8f 100644 --- a/panda/src/cocoadisplay/CMakeLists.txt +++ b/panda/src/cocoadisplay/CMakeLists.txt @@ -40,5 +40,5 @@ target_link_libraries(p3cocoadisplay ${APPLICATIONSERVICES_LIBRARY} ${APPKIT_LIBRARY} ${CARBON_LIBRARY}) if(NOT BUILD_METALIBS) - install(TARGETS p3cocoadisplay EXPORT Panda COMPONENT Panda DESTINATION lib) + install(TARGETS p3cocoadisplay EXPORT Core COMPONENT Core DESTINATION lib) endif() diff --git a/panda/src/glxdisplay/CMakeLists.txt b/panda/src/glxdisplay/CMakeLists.txt index 648dc420fd..17f9546d79 100644 --- a/panda/src/glxdisplay/CMakeLists.txt +++ b/panda/src/glxdisplay/CMakeLists.txt @@ -29,5 +29,5 @@ add_component_library(p3glxdisplay SYMBOL BUILDING_PANDA_GLXDISPLAY target_link_libraries(p3glxdisplay p3glgsg p3x11display) if(NOT BUILD_METALIBS) - install(TARGETS p3glxdisplay EXPORT Panda COMPONENT Panda DESTINATION lib) + install(TARGETS p3glxdisplay EXPORT Core COMPONENT Core DESTINATION lib) endif() diff --git a/panda/src/osxdisplay/CMakeLists.txt b/panda/src/osxdisplay/CMakeLists.txt index c644082fb8..58b58ddb6d 100644 --- a/panda/src/osxdisplay/CMakeLists.txt +++ b/panda/src/osxdisplay/CMakeLists.txt @@ -31,5 +31,5 @@ target_link_libraries(p3osxdisplay ${CORESERVICES_LIBRARY} ${COCOA_LIBRARY}) if(NOT BUILD_METALIBS) - install(TARGETS p3osxdisplay EXPORT Panda COMPONENT Panda DESTINATION lib) + install(TARGETS p3osxdisplay EXPORT Core COMPONENT Core DESTINATION lib) endif() diff --git a/panda/src/x11display/CMakeLists.txt b/panda/src/x11display/CMakeLists.txt index 41db6aaa48..a35cdd0f2b 100644 --- a/panda/src/x11display/CMakeLists.txt +++ b/panda/src/x11display/CMakeLists.txt @@ -17,5 +17,5 @@ add_component_library(p3x11display SYMBOL BUILDING_PANDAX11 target_link_libraries(p3x11display panda PKG::X11) if(NOT BUILD_METALIBS) - install(TARGETS p3x11display EXPORT Panda COMPONENT Panda DESTINATION lib) + install(TARGETS p3x11display EXPORT Core COMPONENT Core DESTINATION lib) endif()