First implementation

It seems to work but I think the ticker value returned
by the remote call is wrong. Maybe I'm calling the wrong
endpoint ¯\_(ツ)_/¯ I don't know trying to work it out
This commit is contained in:
King_DuckZ 2022-05-12 23:40:27 +02:00
commit 1d61cc7f2f
21 changed files with 1474 additions and 0 deletions

View file

@ -0,0 +1,24 @@
curlcpp = library(meson.project_name(),
'curl_easy.cpp',
'curl_header.cpp',
'curl_global.cpp',
'curl_form.cpp',
'curl_multi.cpp',
'curl_share.cpp',
'curl_info.cpp',
'curl_cookie.cpp',
'curl_exception.cpp',
'cookie.cpp',
'cookie_date.cpp',
'cookie_time.cpp',
'cookie_datetime.cpp',
dependencies: [curl_dep],
include_directories: public_incl,
install: (not meson.is_subproject() or get_option('default_library')=='shared')
)
curlcpp_dep = declare_dependency(
link_with: curlcpp,
include_directories: public_incl,
dependencies: curl_dep.partial_dependency(includes: true),
)