You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows, if freetype.dll is anywhere in your PATH , CMake for open cascade will incorrectly pick that .DLL file as the free type "library" causing open cascade link failures. That is , it tries to link with a .DLL instead of a .LIB file. You can see this by inspecting the VS project files.
It should be picking the file "working\LibPack-1.0.0-v3.0.0-Release\lib\freetype.lib"
The solution is to make sure no freetype.dll is in your PATH directories and re-run. For example, having an installed FreeCAD bin directory in your PATH would cause this issue.
This is more a FYI than anything - there us nothing the developer can do about this , it's an obscure issue with open cascade and cmake
The text was updated successfully, but these errors were encountered:
On Windows, if freetype.dll is anywhere in your PATH , CMake for open cascade will incorrectly pick that .DLL file as the free type "library" causing open cascade link failures. That is , it tries to link with a .DLL instead of a .LIB file. You can see this by inspecting the VS project files.
It should be picking the file "working\LibPack-1.0.0-v3.0.0-Release\lib\freetype.lib"
The solution is to make sure no freetype.dll is in your PATH directories and re-run. For example, having an installed FreeCAD bin directory in your PATH would cause this issue.
This is more a FYI than anything - there us nothing the developer can do about this , it's an obscure issue with open cascade and cmake
The text was updated successfully, but these errors were encountered: