2018-02-20 08:33:19 +00:00
|
|
|
files = [
|
|
|
|
'2048.c',
|
|
|
|
'canvas.c',
|
|
|
|
'canvas_line.c',
|
|
|
|
'cons.c',
|
|
|
|
# 'dietline.c',
|
|
|
|
'editor.c',
|
|
|
|
'grep.c',
|
|
|
|
'hud.c',
|
|
|
|
'input.c',
|
|
|
|
'less.c',
|
|
|
|
'line.c',
|
|
|
|
'output.c',
|
|
|
|
'pal.c',
|
|
|
|
'pipe.c',
|
|
|
|
'rgb.c',
|
|
|
|
'utf8.c'
|
2017-05-02 03:05:36 +00:00
|
|
|
]
|
|
|
|
|
2017-06-28 20:54:40 +00:00
|
|
|
r_cons = library('r_cons', files,
|
2017-05-31 11:38:47 +00:00
|
|
|
include_directories: [platform_inc],
|
2018-05-16 08:24:35 +00:00
|
|
|
link_with: [
|
|
|
|
r_util,
|
|
|
|
libr_shlr
|
|
|
|
],
|
2018-02-20 08:33:19 +00:00
|
|
|
install: true,
|
2018-03-24 17:18:32 +00:00
|
|
|
implicit_include_directories: false,
|
2018-04-28 08:02:55 +00:00
|
|
|
soversion: r2_libversion
|
2017-05-02 03:05:36 +00:00
|
|
|
)
|
2018-03-03 12:00:18 +00:00
|
|
|
|
2018-03-23 06:47:46 +00:00
|
|
|
pkgconfig_mod.generate(
|
|
|
|
libraries: [r_cons],
|
|
|
|
subdirs: 'libr',
|
2018-04-28 08:02:55 +00:00
|
|
|
version: r2_version,
|
2018-03-23 06:47:46 +00:00
|
|
|
name: 'r_cons',
|
|
|
|
filebase: 'r_cons',
|
|
|
|
requires: [
|
|
|
|
'r_util'
|
|
|
|
],
|
|
|
|
description: 'radare foundation libraries'
|
|
|
|
)
|