0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-01-31 21:22:27 +00:00
termux-packages/packages/llbuild/products-llbuild-CMakeLists.txt.patch
2023-10-07 21:16:00 +05:30

14 lines
456 B
Diff

Include the llbuild binary when installing.
diff --git a/products/llbuild/CMakeLists.txt b/products/llbuild/CMakeLists.txt
index 6ec9d16..3d4b9dc 100644
--- a/products/llbuild/CMakeLists.txt
+++ b/products/llbuild/CMakeLists.txt
@@ -13,3 +13,7 @@ target_link_libraries(llbuild
if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
target_link_libraries(llbuild curses)
endif()
+
+install(TARGETS llbuild
+ COMPONENT llbuild
+ DESTINATION bin)