diff options
Diffstat (limited to 'tools/minicargo/manifest.cpp')
-rw-r--r-- | tools/minicargo/manifest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/minicargo/manifest.cpp b/tools/minicargo/manifest.cpp index a3158874..72e9ad37 100644 --- a/tools/minicargo/manifest.cpp +++ b/tools/minicargo/manifest.cpp @@ -349,6 +349,9 @@ PackageManifest PackageManifest::load_from_toml(const ::std::string& path) if( t == "\"emscripten\"" ) { return false; } + else if( t == "\"macos\"" ) { + return false; + } else { TODO("Handle target_os string - " << t.to_string()); } |