Add macOS support #34
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2025-08-01 14:12:27 +02:00
parent 1bbe078799
commit 81c6875382
6 changed files with 36 additions and 15 deletions

View File

@@ -29,7 +29,7 @@
namespace repertory {
class app_config;
class i_file_manager;
class i_http_comm;
struct i_http_comm;
class base_provider : public i_provider {
private:

View File

@@ -28,7 +28,7 @@
namespace repertory {
class app_config;
class i_file_manager;
class i_http_comm;
struct i_http_comm;
struct head_object_result;
class s3_provider final : public base_provider {

View File

@@ -28,7 +28,7 @@
namespace repertory {
class app_config;
class i_file_manager;
class i_http_comm;
struct i_http_comm;
class sia_provider : public base_provider {
public:

View File

@@ -132,7 +132,9 @@ handlers::handlers(mgmt_app_config *config, httplib::Server *server)
config_->get_api_port())
.c_str());
#else // error
build fails here
system(
fmt::format(R"(open "http://127.0.0.1:{}/ui")", config_->get_api_port())
.c_str());
#endif
}