Skip to content
Snippets Groups Projects
Commit 0ba589c4 authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Move memory handling to utils library

parent bcf4c3aa
No related branches found
No related tags found
No related merge requests found
subdir('types')
subdir('utils') subdir('utils')
subdir('types')
types_src = ['array.c', 'hashtable.c', 'mem.c', 'slist.c'] types_src = ['array.c', 'hashtable.c', 'slist.c']
types_lib = library('types', types_src, dependencies: libm) types_lib = library('types', types_src, dependencies: [libm, utils_dep])
types_dep = declare_dependency(link_with: types_lib, include_directories: '.') types_dep = declare_dependency(link_with: types_lib, include_directories: '.')
File moved
File moved
utils_lib = library('utils', 'utils.c') utils_lib = library('utils', ['mem.c', 'utils.c'])
utils_dep = declare_dependency(link_with: utils_lib, utils_dep = declare_dependency(link_with: utils_lib,
include_directories: '.') include_directories: '.')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment