Releases: zrax/string_theory
Releases · zrax/string_theory
string_theory 1.2
- Fix linking issue when using
std::experimental::filesystem
with MSVC++ (#3). - Fix copying of DLLs for test cases when building Debug DLL libraries on Windows.
- Fix compilation of tests on MSVC++2012.
- Fix for linker issues with DLLs in MSVC++ (#4).
- Fix for CMake automatically selecting the build directory instead of the install directory when using string_theory in a CMake project (#2).
- NOTE: You may need to clean up your CMake configuration if you built an older release prior to 1.2. For *nix, this should be in
~/.cmake/packages/string_theory
; for Windows, it should be in the registry underHKEY_CURRENT_USER\Software\Kitware\CMake\Packages\string_theory
- NOTE: You may need to clean up your CMake configuration if you built an older release prior to 1.2. For *nix, this should be in
string_theory 1.1
- Added optional support for
std::string
,std::wstring
andstd::filesystem::path
inST::string
andST::format
(and friends). If this is not wanted, it can be disabled by settingST_NO_STL_STRINGS=OFF
in cmake. - Generate the library with a debug suffix (e.g. libstring_theoryd.dll) on Windows, since Release and Debug libraries are not binary compatible.