add str_concat and func_memory

This commit is contained in:
chatlanin
2022-03-27 12:13:50 +03:00
parent 9d86def5ac
commit cac1c694c1
16 changed files with 201 additions and 63 deletions

View File

@@ -28,6 +28,18 @@ deps = []
inc = []
inc += include_directories('.')
conf = configuration_data()
check_headers = [
['ncurses.h', 'HAVE_NCURSES_H'],
['curses.h', 'HAVE_CURSES_H'],
]
foreach h : check_headers
if compiler.has_header(h.get(0))
conf.set(h.get(1), 1)
endif
endforeach
subdir('src')
subdir('bin')
subdir('tests')