Meson build now attempts to force local only build and linkage.

This commit is contained in:
Zed A. Shaw 2025-04-25 00:55:58 -04:00
parent 57e8774fad
commit c51d46aeb8
2 changed files with 14 additions and 14 deletions

View file

@ -72,6 +72,7 @@ namespace textures {
sf::Image texture;
bool good = texture.loadFromFile(filename);
dbc::check(good, fmt::format("failed to load {}", filename));
fmt::println("texture size={}", sizeof(texture));
return texture;
}