2021-05-31 18:54:14 +02:00
|
|
|
chuniio_lib = static_library(
|
2019-05-03 04:12:06 +02:00
|
|
|
'chuniio',
|
|
|
|
name_prefix : '',
|
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
|
|
|
c_pch : '../precompiled.h',
|
2024-08-06 23:35:51 +02:00
|
|
|
|
2019-05-03 04:12:06 +02:00
|
|
|
sources : [
|
2023-12-24 14:10:29 +01:00
|
|
|
'chu2to3.c',
|
|
|
|
'chu2to3.h',
|
2019-05-03 04:12:06 +02:00
|
|
|
'chuniio.c',
|
|
|
|
'chuniio.h',
|
2019-11-17 19:11:49 +01:00
|
|
|
'config.c',
|
|
|
|
'config.h',
|
2023-12-19 12:43:26 +01:00
|
|
|
'leddata.h',
|
|
|
|
'ledoutput.c',
|
|
|
|
'ledoutput.h',
|
|
|
|
'pipeimpl.c',
|
|
|
|
'pipeimpl.h',
|
|
|
|
'serialimpl.c',
|
|
|
|
'serialimpl.h'
|
2019-05-03 04:12:06 +02:00
|
|
|
],
|
|
|
|
)
|