mirror of
https://github.com/djhackersdev/saltytools.git
synced 2026-04-25 07:59:36 -05:00
24 lines
353 B
Meson
24 lines
353 B
Meson
util_lib = static_library(
|
|
'util',
|
|
dependencies: [openssl_dep],
|
|
include_directories: [inc],
|
|
c_pch: '../precompiled.h',
|
|
sources: [
|
|
'crypto.c',
|
|
'crypto.h',
|
|
'fs.c',
|
|
'fs.h',
|
|
'hex.c',
|
|
'hex.h',
|
|
'iobuf.c',
|
|
'iobuf.h',
|
|
'list.c',
|
|
'list.h',
|
|
'log.c',
|
|
'log.h',
|
|
'macro.h',
|
|
'str.c',
|
|
'str.h',
|
|
]
|
|
)
|