Not sure if the right place to ask this particular question but will try anyway. Currently trying to run a software as presented in the link here: GitHub - zhangty019/S3_DeformFDM: S^3-Slicer: A General Slicing Framework for Multi-Axis 3D Printing and without success, ergo this post.
I have been following the instructions provided in the GitHub repository to the point. The only difference in the execution has been that I am running it in VS22 instead of VS19 but this has been adjusted by the following: GKLLib/QMeshLib/ShapeLab > Right click > Properties > Configuration Properties > General > Platform Toolset > Visual Studio 2022 (v143).
A few initial errors have been presented after the initial build but that has been rectified by the following:
Specified paths of libraries and directories in the build files, specifically the ShapeLab. That has been done by the following process:
- Solution explorer > ShapeLab > Properties > Configuration Properties > VC++ Directories > Include Directories > Edit > Include Directories > New Line > paste in directory path:
D:\oneAPI\mkl\2024.0\include
and as well,
- Solution explorer > ShapeLab > Properties > Configuration Properties > VC++ Directories > Library Directories > Edit > Include Directories > New Line > paste in directory path:
D:\oneAPI\mkl\2024.0\lib
The software build process has now been brought to a halt by a single error presented below:
Severity Code Description Project File Line Suppression State Details
Error LNK1181 cannot open input file 'D:\oneAPI\mkl\2024.0\lib.obj' ShapeLab D:\Documents\GitHub\githubTest\S3_DeformFDM\ShapeLab\LINK 1
When I search in the specified file with File Explorer I find that the lib is actually a folder with other subfolders inside of it and other .obj files included. In contrast, there is no file by the name lib.obj.
When searching the web not many helpful tips or tricks have been found so not sure what is to be done to fix this particular error.
Does anyone know what could be done to fix this?