mirror of
https://github.com/termux/termux-packages.git
synced 2025-07-23 22:31:41 +00:00
23 lines
617 B
Diff
23 lines
617 B
Diff
--- a/xmake/draw.lua
|
|
+++ b/xmake/draw.lua
|
|
@@ -39,6 +39,12 @@
|
|
add_packages("moebius")
|
|
add_packages("freetype")
|
|
add_packages("s7")
|
|
+ add_packages("tree-sitter")
|
|
+ add_packages("tree-sitter-cpp")
|
|
+ add_packages("tree-sitter-scheme")
|
|
+ if not is_plat("wasm") then
|
|
+ add_packages("cpptrace")
|
|
+ end
|
|
if is_plat("wasm") then
|
|
add_rules("qt.widgetapp_static")
|
|
else
|
|
@@ -66,6 +69,7 @@
|
|
add_files(plugin_metafont_srcs)
|
|
add_files(plugin_openssl_srcs)
|
|
add_files(plugin_xml_srcs)
|
|
+ add_files(plugin_treesitter_srcs)
|
|
add_files("src/Mogan/Draw/draw.cpp")
|
|
|