mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-11 23:17:08 +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',
|
|
],
|
|
)
|