blob: dc8284bebeded506c9d3262f2ce87d13f92f804f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
project('l2su', 'c')
add_global_arguments('-D_POSIX_C_SOURCE=200809L', language : 'c')
curl_dep = dependency('libcurl')
jansson_dep = dependency('jansson')
config_data = configuration_data()
config_data.set_quoted('PROJECT_NAME', 'l2su')
config_data.set_quoted('PROJECT_NAME_UPPER', 'L2SU')
subdir('src')
executable('l2su', launcher_srcs, dependencies : [curl_dep, jansson_dep], include_directories : [config_include_dir], override_options : {'c_std': 'c99'})
|