MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

static link

+9 -3
+9 -3
meson.build
··· 1 1 project('ant', 'c', default_options: [ 2 2 'optimization=2', 3 - 'c_std=c23' 3 + 'c_std=c23', 4 + 'default_library=static' 4 5 ]) 5 6 6 7 include = include_directories('include') ··· 22 23 libsodium_dep = dependency('libsodium', required: true) 23 24 24 25 # dependencies 25 - curl_dep = subproject('curl').get_variable('curl_dep') 26 26 yyjson_dep = subproject('yyjson').get_variable('yyjson_dep') 27 27 uuidv7_dep = subproject('uuidv7').get_variable('uuidv7_dep') 28 28 mongoose_dep = subproject('mongoose').get_variable('mongoose_dep') 29 29 argtable3_dep = subproject('argtable3').get_variable('argtable3_dep') 30 30 minicoro_dep = subproject('minicoro').get_variable('minicoro_dep') 31 31 32 + curl_dep = subproject('curl', default_options: [ 33 + 'tests=disabled', 34 + 'tool=disabled', 35 + 'unittests=disabled'] 36 + ).get_variable('curl_dep') 37 + 32 38 git = find_program('git', required: false) 33 39 if git.found() 34 40 git_commit = run_command(git, 'rev-parse', '--short=10', 'HEAD', check: false) ··· 44 50 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 45 51 46 52 version_conf = configuration_data() 47 - version_conf.set('ANT_VERSION', '0.0.6.18') 53 + version_conf.set('ANT_VERSION', '0.0.6.19') 48 54 version_conf.set('ANT_GIT_HASH', git_hash) 49 55 version_conf.set('ANT_BUILD_DATE', build_date) 50 56