mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-24 13:30:09 +01:00
18 lines
337 B
Meson
18 lines
337 B
Meson
|
aimeio_dll = shared_library(
|
||
|
'aimeio',
|
||
|
name_prefix : '',
|
||
|
include_directories: inc,
|
||
|
implicit_include_directories : false,
|
||
|
vs_module_defs : 'aimeio.def',
|
||
|
c_pch : [
|
||
|
'../precompiled.c',
|
||
|
'../precompiled.h',
|
||
|
],
|
||
|
link_with : [
|
||
|
util_lib,
|
||
|
],
|
||
|
sources : [
|
||
|
'aimeio.c',
|
||
|
],
|
||
|
)
|