chore: sync project state and current artifacts

This commit is contained in:
Sepehr
2026-02-22 23:27:31 +01:00
parent 1b6415776e
commit dd77089b22
232 changed files with 37056 additions and 4296 deletions

9
fix_build.py Normal file
View File

@@ -0,0 +1,9 @@
with open('crates/fluids/coolprop-sys/build.rs', 'r') as f:
text = f.read()
# CoolProp has a CMake option that we need to turn ON to compile the C-wrapper
# DCOOLPROP_CATCH_TEST=OFF -> replace with adding DCOOLPROP_C_LIBRARY=ON
text = text.replace('.define("COOLPROP_CATCH_TEST", "OFF")', '.define("COOLPROP_CATCH_TEST", "OFF")\n .define("COOLPROP_C_LIBRARY", "ON")')
with open('crates/fluids/coolprop-sys/build.rs', 'w') as f:
f.write(text)