dst/dub.json
2025-06-26 13:47:07 -05:00

51 lines
820 B
JSON

{
"dependencies": {
"bindbc-freetype": "~>1.1.1",
"libx11": "~>0.0.2"
},
"description": "Simple terminal (st) port to D",
"dflags": [
"-preview=dip1000",
"-preview=fieldwise",
"-preview=dtorfields"
],
"importPaths": [
"source"
],
"lflags-posix": [
"-L/usr/X11R6/lib"
],
"libs": [
"X11",
"Xft",
"fontconfig",
"Xrender",
"m",
"rt",
"util",
"imlib2"
],
"license": "MIT",
"name": "dst",
"sourceFiles": [
"source/main.d",
"source/st.d",
"source/x.d",
"source/sixel.d",
"source/sixel_hls.d",
"source/config.d",
"source/patches.d",
"source/arg.d",
"source/win.d",
"source/xft_types.d",
"source/patch/alpha.d",
"source/patch/boxdraw.d",
"source/patch/externalpipe.d"
],
"targetName": "dst",
"targetType": "executable",
"versions": [
"SIXEL_PATCH"
]
}