Farewell_
c047663c90
The game sometimes crashes, throwing an access violation at offset 00000000002f399a. I haven't been able to recreate accurately.
23 lines
382 B
Meson
23 lines
382 B
Meson
project(
|
|
'tomlc99',
|
|
'c',
|
|
default_options : ['c_std=c99']
|
|
)
|
|
|
|
sources = files('toml.c')
|
|
|
|
includes = include_directories('.')
|
|
|
|
tomlc99_lib = static_library(
|
|
'tomlc99',
|
|
sources,
|
|
include_directories: includes,
|
|
)
|
|
|
|
tomlc99_dep = declare_dependency(
|
|
include_directories: includes,
|
|
link_with: tomlc99_lib,
|
|
)
|
|
|
|
meson.override_dependency('tomlc99', tomlc99_dep)
|