Releases: thermohub/thermofun
produce dynamic library using MSVC
v0.1.15 produce dynamic library using MSVC
Fixes for windows build
Merge pull request #7 from thermomod/gdmiron-patch-1 disabled output of water props in steam convention
Enable Windows build in conda-forge
This release enables Windows build in conda-forge.
BugFix Cp function calculation
Merge pull request #6 from gdmiron/master Bugfix in cp_ft calculation
Enable Travis and AppVeyor CI
This release also fixes a build issue in which velocypack dependency was needed by default.
Fix JSON bug
Fix JSON bug on parsing map.
Fix further compilation issues in Windows
This release fixes several compilation errors due to the use of uint
, instead of std::size_t
when compiling with MSVC.
Fix some compilation issues in Windows
This release fixes some compilation issues in Windows due to compiler flags that are not supported my MSVC.
Also, the following is now used to permit shared library compilation by MSVC:
# Enable automatic creation of a module definition (.def) file for a SHARED library on Windows.
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
Resolve issue that dependencies are propagated to consumers
This release fixes some bugs (replace #include "nlohmann/json.hpp"
by #include <nlohmann/json.hpp>
and it prevents libraries linking against ThermoFun to also depend on Boost and nlohmann_json libs.
Bug fix release
This release fixes header issues when compiling the python module of ThermoFun.
It also improves finding of dependencies using CMake.
And it introduces conda support for helping on the management of third party deps.