Add windows clang to CI (#5537)

- Add windows clang build step
- Closes https://github.com/assimp/assimp/issues/5519


Co-authored-by: Kim Kulling <kim.kulling@draeger.com>
Co-authored-by: Kim Kulling <kullingk@LDED5178.corp.draeger.global>
This commit is contained in:
Kim Kulling
2025-07-16 16:43:20 +02:00
committed by GitHub
parent db0bde758e
commit a79dc358cf
18 changed files with 153 additions and 76 deletions

View File

@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "AbstractImportExportBase.h"
#include "UnitTestPCH.h"
#include "Tools/TestTools.h"
#include <assimp/commonMetaData.h>
#include <assimp/postprocess.h>
#include <assimp/config.h>
@@ -472,7 +472,8 @@ TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeTrianglesFan) {
std::vector<char> ReadFile(const char *name) {
std::vector<char> ret;
FILE *p = ::fopen(name, "r");
FILE *p{ nullptr };
EXPECT_TRUE(Unittest::TestTools::openFilestream(&p, name, "r"));
if (nullptr == p) {
return ret;
}