util: Add empty static lib

This commit is contained in:
Tau 2018-11-07 16:37:23 -05:00
parent 5e93b660e3
commit d6eeec637c
2 changed files with 13 additions and 0 deletions

View File

@ -16,3 +16,5 @@ add_project_link_arguments(
inc = include_directories('.')
capnhook = subproject('capnhook')
subdir('util')

11
util/meson.build Normal file
View File

@ -0,0 +1,11 @@
util_lib = static_library(
'util',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
],
)