Draft: Yaml parsing
5 unresolved threads
5 unresolved threads
Rebased MR !54 (closed)
Edited by Gijs Peskens
Merge request reports
Activity
Filter activity
changed milestone to %0.2 release
added Enhancement label
added 14 commits
-
1a3589e4 - 1 commit from branch
master
- e231eed3 - initial port of yaml parsing
- f9996207 - port complete
- 80f04066 - help message
- 23a6c277 - libyaml added as subproject
- e348a0a1 - libyaml build fixed when lib not present
- 2c798791 - proper meson version selected
- bd33bf5a - first test of suppressing warnings for librist
- 240befcf - mactest
- 47bbbf3e - limited libyaml includes to linux
- 5ad11187 - mac attempt 2
- 81d69cf0 - mac attempt 3
- 21e747f1 - disabled for windows
- ae107f09 - Rebase fix
Toggle commit list-
1a3589e4 - 1 commit from branch
52 52 builtin_cjson = true 53 53 builtin_lz4 = true 54 54 else 55 add_project_arguments(['-Wshadow', '-pedantic-errors'], language: 'c') 55 add_project_arguments(['-Wshadow', '-pedantic-errors','-Werror'], language: 'c') 56 56 add_project_arguments(cc.get_supported_arguments([ 57 57 '-Wundef', 58 '-Werror=vla', 31 cmake = import('cmake') 32 toolchainfile = '' 33 if meson.is_cross_build() 34 if meson.get_cross_property('mingw_toolchainfile') 35 toolchainfile = '-DCMAKE_TOOLCHAIN_FILE='+meson.current_source_dir() + '/common/ci/x86_64-w64-mingw32.cmake' 36 endif 37 endif 38 libyaml_proj = cmake.subproject('libyaml', cmake_options: ['-DENABLE_TESTING=OFF', '-DENABLE_PROGRAMS=OFF', '-DCMAKE_POSITION_INDEPENDENT_CODE=ON', toolchainfile], default_options: ['werror=false']) 39 libyaml = libyaml_proj.dependency('yaml') 40 endif 41 tools_dependencies += [libyaml] 42 endif 19 43 20 44 executable('ristsender', 21 ['ristsender.c',srp_shared, tools_deps, rev_target], 45 ['ristsender.c', 'yamlparse.c', srp_shared, tools_deps, rev_target], added 14 commits
-
1ce0abdc - 1 commit from branch
master
- d36cd420 - initial port of yaml parsing
- d4b35c6a - port complete
- bd3447d7 - help message
- ef4c13ad - libyaml added as subproject
- 26c11a9b - libyaml build fixed when lib not present
- 647a45b4 - proper meson version selected
- 64821871 - first test of suppressing warnings for librist
- 28e31b72 - mactest
- 8dfd4b24 - limited libyaml includes to linux
- e032f09f - mac attempt 2
- c107f534 - mac attempt 3
- 8f6a0966 - disabled for windows
- 6cd5e8a8 - Rebase fix
Toggle commit list-
1ce0abdc - 1 commit from branch
This feature is now in the file_config branch and will be merged soon
Edited by Sergio Ammirata