iccard: Add new static library

This commit is contained in:
Tau 2019-10-19 15:48:29 -04:00
parent eaeda09030
commit 568baa3841
2 changed files with 12 additions and 0 deletions

11
iccard/meson.build Normal file
View File

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

View File

@ -33,6 +33,7 @@ inc = include_directories('.')
capnhook = subproject('capnhook')
subdir('amex')
subdir('iccard')
subdir('board')
subdir('hooklib')
subdir('jvs')