This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/client/http/requestmanager/meson.build
2023-08-22 00:26:32 +02:00

17 lines
426 B
Meson

client_files += files(
'Common.cpp',
)
if not enable_http
client_files += files('Null.cpp')
elif host_platform == 'emscripten'
client_files += files('Emscripten.cpp')
project_link_args += [
'-s', 'EXPORTED_FUNCTIONS=_main,_RequestManager_UpdateRequestStatusThunk',
'-s', 'EXPORTED_RUNTIME_METHODS=cwrap',
]
else
client_files += files('Libcurl.cpp')
endif
conf_data.set('NOHTTP', not enable_http ? 'true' : 'false')