Skip to content

Commit 7f57665

Browse files
author
Tor Didriksen
committed
Bug#22321338 SELECTIVE INSTALL FOR DEVELOPMENT DOESN'T INSTALL ALL REQUIRED FILES
Trying to install just the shared libraries, clients, and development support fails to install everything that is required. After installing the "SharedLibraries", "Client", and "Development" components it should be possible to build a client application without errors, but this is NOT currently possible. Fix: add missing COMPONENT Development to binary_log_types.h
1 parent afccf81 commit 7f57665

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

include/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ SET(HEADERS
6868
${HEADERS_GEN_CONFIGURE}
6969
)
7070

71-
INSTALL(FILES ../libbinlogevents/export/binary_log_types.h DESTINATION ${INSTALL_INCLUDEDIR})
71+
INSTALL(FILES
72+
../libbinlogevents/export/binary_log_types.h
73+
DESTINATION ${INSTALL_INCLUDEDIR}
74+
COMPONENT Development)
7275
INSTALL(FILES ${HEADERS} DESTINATION ${INSTALL_INCLUDEDIR} COMPONENT Development)
7376
INSTALL(DIRECTORY mysql/ DESTINATION ${INSTALL_INCLUDEDIR}/mysql COMPONENT Development
7477
PATTERN "*.h"

0 commit comments

Comments
 (0)