mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:57:45 +00:00
Ladybird: Install SQLServer binary
Install the SQLServer binary added in 2cb3ae1
so that it's actually
available on the target system when doing a standalone build of
Ladybird.
This commit is contained in:
parent
555d7a6fce
commit
1fc7740152
1 changed files with 12 additions and 1 deletions
|
@ -18,6 +18,16 @@ install(TARGETS ladybird
|
||||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
install(TARGETS SQLServer
|
||||||
|
EXPORT ladybirdTargets
|
||||||
|
RUNTIME
|
||||||
|
COMPONENT ladybird_Runtime
|
||||||
|
DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
|
BUNDLE
|
||||||
|
COMPONENT ladybird_Runtime
|
||||||
|
DESTINATION bundle
|
||||||
|
)
|
||||||
|
|
||||||
install(TARGETS WebContent
|
install(TARGETS WebContent
|
||||||
EXPORT ladybirdTargets
|
EXPORT ladybirdTargets
|
||||||
RUNTIME
|
RUNTIME
|
||||||
|
@ -30,8 +40,9 @@ install(TARGETS WebContent
|
||||||
|
|
||||||
include("${SERENITY_SOURCE_DIR}/Meta/Lagom/get_linked_lagom_libraries.cmake")
|
include("${SERENITY_SOURCE_DIR}/Meta/Lagom/get_linked_lagom_libraries.cmake")
|
||||||
get_linked_lagom_libraries(ladybird ladybird_lagom_libraries)
|
get_linked_lagom_libraries(ladybird ladybird_lagom_libraries)
|
||||||
|
get_linked_lagom_libraries(SQLServer sqlserver_lagom_libraries)
|
||||||
get_linked_lagom_libraries(WebContent webcontent_lagom_libraries)
|
get_linked_lagom_libraries(WebContent webcontent_lagom_libraries)
|
||||||
list(APPEND all_required_lagom_libraries ${ladybird_lagom_libraries} ${webcontent_lagom_libraries})
|
list(APPEND all_required_lagom_libraries ${ladybird_lagom_libraries} ${sqlserver_lagom_libraries} ${webcontent_lagom_libraries})
|
||||||
list(REMOVE_DUPLICATES all_required_lagom_libraries)
|
list(REMOVE_DUPLICATES all_required_lagom_libraries)
|
||||||
|
|
||||||
install(TARGETS ${all_required_lagom_libraries}
|
install(TARGETS ${all_required_lagom_libraries}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue