From 8fb7916a0d0cb007a4c3a4e6a31af58765268ca3 Mon Sep 17 00:00:00 2001 From: sanine Date: Sat, 16 Apr 2022 11:55:54 -0500 Subject: delete src/mesh/assimp-master --- src/mesh/assimp-master/test/unit/Main.cpp | 33 ------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/mesh/assimp-master/test/unit/Main.cpp (limited to 'src/mesh/assimp-master/test/unit/Main.cpp') diff --git a/src/mesh/assimp-master/test/unit/Main.cpp b/src/mesh/assimp-master/test/unit/Main.cpp deleted file mode 100644 index d5049fa..0000000 --- a/src/mesh/assimp-master/test/unit/Main.cpp +++ /dev/null @@ -1,33 +0,0 @@ -#include "../../include/assimp/DefaultLogger.hpp" -#include "UnitTestPCH.h" - -#include -#include - -int main(int argc, char *argv[]) { - ::testing::InitGoogleTest(&argc, argv); - - // seed the randomizer with the current system time - time_t t; - time(&t); - srand((unsigned int)t); - - // ............................................................................ - - // create a logger from both CPP - Assimp::DefaultLogger::create("AssimpLog_Cpp.txt", Assimp::Logger::VERBOSE, - aiDefaultLogStream_STDOUT | aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE); - - // .. and C. They should smoothly work together - aiEnableVerboseLogging(AI_TRUE); - aiLogStream logstream = aiGetPredefinedLogStream(aiDefaultLogStream_FILE, "AssimpLog_C.txt"); - aiAttachLogStream(&logstream); - - int result = RUN_ALL_TESTS(); - - // ............................................................................ - // but shutdown must be done from C to ensure proper deallocation - aiDetachAllLogStreams(); - - return result; -} -- cgit v1.2.1