19 lines
379 B
Meson
19 lines
379 B
Meson
#add_project_link_arguments(['-lstdc++fs'], language: 'cpp')
|
|
|
|
conf = configuration_data()
|
|
conf.set('APP_NAME', meson.project_name())
|
|
config_file = configure_file(
|
|
input: 'config.h.in',
|
|
output: 'config.h',
|
|
configuration: conf
|
|
)
|
|
|
|
executable(meson.project_name(),
|
|
'main.cpp',
|
|
config_file,
|
|
dependencies: [
|
|
memcard_dep
|
|
],
|
|
install: true,
|
|
include_directories: cxxopts_incl
|
|
)
|