Making a premake5.lua project for googletest. #3776
-
Hello! I'm trying to create a premake5 project for googletest and googlemock in order to integrate them in my projects, but I'm having issues. I don't use CMake other than building projects, but I tried to read the CMakeList.txt files and the source files of each project in order to try and understand what definitions and build options are being used. My forked google test repo: https://github.com/babaliaris/googletest This is what I tried for googletest: (https://github.com/babaliaris/googletest/blob/main/googletest/premake5.lua) project "googletest"
kind "StaticLib"
language "C++"
targetdir "%{_WORKING_DIR}/builds/%{cfg.shortname}/"
objdir "%{_WORKING_DIR}/obj/%{prj.name}_%{cfg.shortname}/"
-- This premake file is relative to googletest/ directory
files {
"src/**.h", -- <googletest_repo_root>/googletest/src/
"src/**.cc", -- <googletest_repo_root/googletest/src/
"include/**.h" -- <googletest_repo_root/googletest/include/
}
includedirs {
".", -- <googletest_repo_root/googletest/
"include/", -- <googletest_repo_root/googletest/include
}
-- -------------------------------|All Platforms|------------------------------- --
filter{}
filter "configurations:Debug"
defines "DEBUG"
runtime "Debug"
symbols "on"
filter{}
filter "configurations:PreRelease"
defines "NDEBUG"
runtime "Release"
optimize "on"
filter{}
filter "configurations:Release"
defines "NDEBUG"
runtime "Release"
optimize "on"
-- -------------------------------|All Platforms|------------------------------- --
-- ----------------------------------|Windows|---------------------------------- --
filter{}
filter "system:Windows"
buildoptions {
"-GS", "-W4", "-WX", "-wd4251", "-wd4275", "-nologo", "-J",
"-D_UNICODE", "-DUNICODE", "-DWIN32", "-D_WIN32",
"-EHs-c-", "-D_HAS_EXCEPTIONS=0", "-GR-", "-wd4702", "-utf-8"
}
defines {
"GTEST_OS_WINDOWS"
}
-- ----------------------------------|Windows|---------------------------------- --
-- -----------------------------------|Linux|----------------------------------- --
filter{}
filter "system:Linux"
pic "On"
buildoptions {
"-Wall", "-Wshadow", "-Wno-error=dangling-else",
"-fno-exceptions", "-fno-rtti", "-DGTEST_HAS_RTTI=0"
}
defines {
"GTEST_OS_LINUX"
}
-- -----------------------------------|Linux|----------------------------------- -- It compiles just fine (but with 400 warnings). When I link this project to my Console App UnitTests project, I get the following errors: Severity Code Description Project File Line Suppression State
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-death-test.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-port.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-port.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-assertion-result.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-assertion-result.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-filepath.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-filepath.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-printers.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-printers.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-death-test.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-death-test.obj) 1
Error LNK2038 mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '2' doesn't match value '0' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-test-part.obj) 1
Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MDd_DynamicDebug' doesn't match value 'MD_DynamicRelease' in UnitTestsMain.obj UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-test-part.obj) 1
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-printers.obj) 1
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-test-part.obj) 1
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-port.obj) 1
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-assertion-result.obj) 1
Error LNK2001 unresolved external symbol __imp__invalid_parameter UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-filepath.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-printers.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-death-test.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-test-part.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-port.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-assertion-result.obj) 1
Error LNK2001 unresolved external symbol __imp__calloc_dbg UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-filepath.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-printers.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-death-test.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-test-part.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-port.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-assertion-result.obj) 1
Error LNK2001 unresolved external symbol __imp__CrtDbgReport UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-filepath.obj) 1
Error LNK2019 unresolved external symbol __imp__CrtSetReportFile referenced in function "public: int __cdecl testing::UnitTest::Run(void)" (?Run@UnitTest@testing@@QEAAHXZ) UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2019 unresolved external symbol __imp__CrtSetReportMode referenced in function "public: int __cdecl testing::UnitTest::Run(void)" (?Run@UnitTest@testing@@QEAAHXZ) UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest.obj) 1
Error LNK2019 unresolved external symbol __imp__CrtSetDbgFlag referenced in function "public: __cdecl testing::internal::`anonymous namespace'::MemoryIsNotDeallocated::MemoryIsNotDeallocated(void)" (??0MemoryIsNotDeallocated@?A0x30998689@internal@testing@@QEAA@XZ) UnitTests C:\Users\babaliaris\source\repos\VampEngine\Projects\UnitTests\googletest.lib(gtest-port.obj) 1
Error LNK1120 6 unresolved externals UnitTests C:\Users\babaliaris\source\repos\VampEngine\builds\debug_x64\UnitTests.exe 1
Am I missing something? Maybe not defining any macros that must be defined? Maybe I need to link against some other library that google test depends on? Thanks! PS: These are the warnings that are getting generated when compiling googletest with visual studio 2022: Severity Code Description Project File Line Suppression State
Warning C26495 Variable 'testing::internal::MatcherBase<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >::buffer_' is uninitialized. Always initialize a member variable (type.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\gtest-matchers.h 291
Warning C26495 Variable 'testing::internal::MatcherBase<std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &>::buffer_' is uninitialized. Always initialize a member variable (type.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\gtest-matchers.h 291
Warning C26439 This kind of function should not throw. Declare it 'noexcept' (f.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\gtest-matchers.h 319
Warning C26812 The enum type 'testing::TestPartResult::Type' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\gtest-test-part.h 65
Warning C26495 Variable 'testing::internal::Mutex::critical_section_' is uninitialized. Always initialize a member variable (type.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\internal\gtest-port.h 1365
Warning C26495 Variable 'testing::internal::Mutex::critical_section_init_phase_' is uninitialized. Always initialize a member variable (type.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\internal\gtest-port.h 1365
Warning C26495 Variable 'testing::internal::Mutex::owner_thread_id_' is uninitialized. Always initialize a member variable (type.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\internal\gtest-port.h 1365
Warning C26495 Variable 'testing::internal::Mutex::type_' is uninitialized. Always initialize a member variable (type.6). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\internal\gtest-port.h 1365
Warning C26812 The enum type 'testing::internal::Mutex::StaticConstructorSelector' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). UnitTests C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\include\gtest\internal\gtest-port.h 1365
Warning D9025 overriding '/W3' with '/W4' googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\cl 1
Warning D9025 overriding '/WX-' with '/WX' googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\cl 1
Warning D9025 overriding '/EHs' with '/EHs-' googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\cl 1
Warning D9025 overriding '/EHc' with '/EHc-' googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\cl 1
Warning LNK4006 "char const * const testing::internal::kStackTraceMarker" (?kStackTraceMarker@internal@testing@@3QBDB) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_list_tests" (?FLAGS_gtest_list_tests@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_show_internal_stack_frames" (?FLAGS_gtest_show_internal_stack_frames@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::internal::g_help_flag" (?g_help_flag@internal@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static char const * const testing::internal::OsStackTraceGetterInterface::kElidedFramesMarker" (?kElidedFramesMarker@OsStackTraceGetterInterface@internal@testing@@2QEBDEB) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsTrue(bool)" (?IsTrue@internal@testing@@YA_N_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::RE::~RE(void)" (??1RE@internal@testing@@QEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::RE::FullMatch(char const *,class testing::internal::RE const &)" (?FullMatch@RE@internal@testing@@SA_NPEBDAEBV123@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::RE::PartialMatch(char const *,class testing::internal::RE const &)" (?PartialMatch@RE@internal@testing@@SA_NPEBDAEBV123@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::internal::RE::Init(char const *)" (?Init@RE@internal@testing@@AEAAXPEBD@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::FormatFileLocation(char const *,int)" (?FormatFileLocation@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBDH@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::FormatCompilerIndependentFileLocation(char const *,int)" (?FormatCompilerIndependentFileLocation@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBDH@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::GTestLog::GTestLog(enum testing::internal::GTestLogSeverity,char const *,int)" (??0GTestLog@internal@testing@@QEAA@W4GTestLogSeverity@12@PEBDH@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::GTestLog::~GTestLog(void)" (??1GTestLog@internal@testing@@QEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::CaptureStdout(void)" (?CaptureStdout@internal@testing@@YAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::GetCapturedStdout(void)" (?GetCapturedStdout@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::CaptureStderr(void)" (?CaptureStderr@internal@testing@@YAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::GetCapturedStderr(void)" (?GetCapturedStderr@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "unsigned __int64 __cdecl testing::internal::GetFileSize(struct _iobuf *)" (?GetFileSize@internal@testing@@YA_KPEAU_iobuf@@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::ReadEntireFile(struct _iobuf *)" (?ReadEntireFile@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAU_iobuf@@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > __cdecl testing::internal::GetArgvs(void)" (?GetArgvs@internal@testing@@YA?AV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > __cdecl testing::internal::GetInjectableArgvs(void)" (?GetInjectableArgvs@internal@testing@@YA?AV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::SetInjectableArgvs(class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > const *)" (?SetInjectableArgvs@internal@testing@@YAXPEBV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::SetInjectableArgvs(class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > const &)" (?SetInjectableArgvs@internal@testing@@YAXAEBV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::ClearInjectableArgvs(void)" (?ClearInjectableArgvs@internal@testing@@YAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::AutoHandle::AutoHandle(void)" (??0AutoHandle@internal@testing@@QEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::AutoHandle::AutoHandle(void *)" (??0AutoHandle@internal@testing@@QEAA@PEAX@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::AutoHandle::~AutoHandle(void)" (??1AutoHandle@internal@testing@@QEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void * __cdecl testing::internal::AutoHandle::Get(void)const " (?Get@AutoHandle@internal@testing@@QEBAPEAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::AutoHandle::Reset(void)" (?Reset@AutoHandle@internal@testing@@QEAAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::AutoHandle::Reset(void *)" (?Reset@AutoHandle@internal@testing@@QEAAXPEAX@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: bool __cdecl testing::internal::AutoHandle::IsCloseable(void)const " (?IsCloseable@AutoHandle@internal@testing@@AEBA_NXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::Mutex::Mutex(void)" (??0Mutex@internal@testing@@QEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::Mutex::~Mutex(void)" (??1Mutex@internal@testing@@QEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::Mutex::Lock(void)" (?Lock@Mutex@internal@testing@@QEAAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::Mutex::Unlock(void)" (?Unlock@Mutex@internal@testing@@QEAAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::Mutex::AssertHeld(void)" (?AssertHeld@Mutex@internal@testing@@QEAAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::internal::Mutex::ThreadSafeLazyInit(void)" (?ThreadSafeLazyInit@Mutex@internal@testing@@AEAAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class testing::internal::ThreadLocalValueHolderBase * __cdecl testing::internal::ThreadLocalRegistry::GetValueOnCurrentThread(class testing::internal::ThreadLocalBase const *)" (?GetValueOnCurrentThread@ThreadLocalRegistry@internal@testing@@SAPEAVThreadLocalValueHolderBase@23@PEBVThreadLocalBase@23@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static void __cdecl testing::internal::ThreadLocalRegistry::OnThreadLocalDestroyed(class testing::internal::ThreadLocalBase const *)" (?OnThreadLocalDestroyed@ThreadLocalRegistry@internal@testing@@SAXPEBVThreadLocalBase@23@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::ThreadWithParamBase::Join(void)" (?Join@ThreadWithParamBase@internal@testing@@QEAAXXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: __cdecl testing::internal::ThreadWithParamBase::ThreadWithParamBase(class testing::internal::ThreadWithParamBase::Runnable *,class testing::internal::Notification *)" (??0ThreadWithParamBase@internal@testing@@IEAA@PEAVRunnable@012@PEAVNotification@12@@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: virtual __cdecl testing::internal::ThreadWithParamBase::~ThreadWithParamBase(void)" (??1ThreadWithParamBase@internal@testing@@MEAA@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "unsigned __int64 __cdecl testing::internal::GetThreadCount(void)" (?GetThreadCount@internal@testing@@YA_KXZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ParseInt32(class testing::Message const &,char const *,int *)" (?ParseInt32@internal@testing@@YA_NAEBVMessage@2@PEBDPEAH@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::BoolFromGTestEnv(char const *,bool)" (?BoolFromGTestEnv@internal@testing@@YA_NPEBD_N@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "int __cdecl testing::internal::Int32FromGTestEnv(char const *,int)" (?Int32FromGTestEnv@internal@testing@@YAHPEBDH@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::OutputFlagAlsoCheckEnvVar(void)" (?OutputFlagAlsoCheckEnvVar@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "char const * __cdecl testing::internal::StringFromGTestEnv(char const *,char const *)" (?StringFromGTestEnv@internal@testing@@YAPEBDPEBD0@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::Message::Message(void)" (??0Message@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::Message & __cdecl testing::Message::operator<<(wchar_t const *)" (??6Message@testing@@QEAAAEAV01@PEB_W@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::Message & __cdecl testing::Message::operator<<(wchar_t *)" (??6Message@testing@@QEAAAEAV01@PEA_W@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::Message & __cdecl testing::Message::operator<<(class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const &)" (??6Message@testing@@QEAAAEAV01@AEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::Message::GetString(void)const " (?GetString@Message@testing@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::AssertionResult::AssertionResult(class testing::AssertionResult const &)" (??0AssertionResult@testing@@QEAA@AEBV01@@Z) already defined in gtest-assertion-result.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::AssertionResult __cdecl testing::AssertionResult::operator!(void)const " (??7AssertionResult@testing@@QEBA?AV01@XZ) already defined in gtest-assertion-result.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::AssertionResult::swap(class testing::AssertionResult &)" (?swap@AssertionResult@testing@@AEAAXAEAV12@@Z) already defined in gtest-assertion-result.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::AssertionSuccess(void)" (?AssertionSuccess@testing@@YA?AVAssertionResult@1@XZ) already defined in gtest-assertion-result.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::AssertionFailure(void)" (?AssertionFailure@testing@@YA?AVAssertionResult@1@XZ) already defined in gtest-assertion-result.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::AssertionFailure(class testing::Message const &)" (?AssertionFailure@testing@@YA?AVAssertionResult@1@AEBVMessage@1@@Z) already defined in gtest-assertion-result.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::String::CStringEquals(char const *,char const *)" (?CStringEquals@String@internal@testing@@SA_NPEBD0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::String::ShowWideCString(wchar_t const *)" (?ShowWideCString@String@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEB_W@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::String::WideCStringEquals(wchar_t const *,wchar_t const *)" (?WideCStringEquals@String@internal@testing@@SA_NPEB_W0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::String::CaseInsensitiveCStringEquals(char const *,char const *)" (?CaseInsensitiveCStringEquals@String@internal@testing@@SA_NPEBD0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::String::CaseInsensitiveWideCStringEquals(wchar_t const *,wchar_t const *)" (?CaseInsensitiveWideCStringEquals@String@internal@testing@@SA_NPEB_W0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::String::EndsWithCaseInsensitive(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?EndsWithCaseInsensitive@String@internal@testing@@SA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::String::FormatIntWidth2(int)" (?FormatIntWidth2@String@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::String::FormatIntWidthN(int,int)" (?FormatIntWidthN@String@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HH@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::String::FormatHexInt(int)" (?FormatHexInt@String@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::String::FormatHexUInt32(unsigned int)" (?FormatHexUInt32@String@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::String::FormatByte(unsigned char)" (?FormatByte@String@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@E@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::StringStreamToString(class std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> > *)" (?StringStreamToString@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class testing::internal::FilePath __cdecl testing::internal::FilePath::GetCurrentDir(void)" (?GetCurrentDir@FilePath@internal@testing@@SA?AV123@XZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class testing::internal::FilePath __cdecl testing::internal::FilePath::MakeFileName(class testing::internal::FilePath const &,class testing::internal::FilePath const &,int,char const *)" (?MakeFileName@FilePath@internal@testing@@SA?AV123@AEBV123@0HPEBD@Z) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class testing::internal::FilePath __cdecl testing::internal::FilePath::ConcatPaths(class testing::internal::FilePath const &,class testing::internal::FilePath const &)" (?ConcatPaths@FilePath@internal@testing@@SA?AV123@AEBV123@0@Z) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class testing::internal::FilePath __cdecl testing::internal::FilePath::GenerateUniqueFileName(class testing::internal::FilePath const &,class testing::internal::FilePath const &,char const *)" (?GenerateUniqueFileName@FilePath@internal@testing@@SA?AV123@AEBV123@0PEBD@Z) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::internal::FilePath __cdecl testing::internal::FilePath::RemoveTrailingPathSeparator(void)const " (?RemoveTrailingPathSeparator@FilePath@internal@testing@@QEBA?AV123@XZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::internal::FilePath __cdecl testing::internal::FilePath::RemoveDirectoryName(void)const " (?RemoveDirectoryName@FilePath@internal@testing@@QEBA?AV123@XZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::internal::FilePath __cdecl testing::internal::FilePath::RemoveFileName(void)const " (?RemoveFileName@FilePath@internal@testing@@QEBA?AV123@XZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::internal::FilePath __cdecl testing::internal::FilePath::RemoveExtension(char const *)const " (?RemoveExtension@FilePath@internal@testing@@QEBA?AV123@PEBD@Z) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::CreateDirectoriesRecursively(void)const " (?CreateDirectoriesRecursively@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::CreateFolder(void)const " (?CreateFolder@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::FileOrDirectoryExists(void)const " (?FileOrDirectoryExists@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::DirectoryExists(void)const " (?DirectoryExists@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::IsDirectory(void)const " (?IsDirectory@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::IsRootDirectory(void)const " (?IsRootDirectory@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::FilePath::IsAbsolutePath(void)const " (?IsAbsolutePath@FilePath@internal@testing@@QEBA_NXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::internal::FilePath::Normalize(void)" (?Normalize@FilePath@internal@testing@@AEAAXXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: char const * __cdecl testing::internal::FilePath::FindLastPathSeparator(void)const " (?FindLastPathSeparator@FilePath@internal@testing@@AEBAPEBDXZ) already defined in gtest-filepath.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::AppendUserMessage(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class testing::Message const &)" (?AppendUserMessage@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV34@AEBVMessage@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::vector<enum testing::internal::edit_distance::EditType,class std::allocator<enum testing::internal::edit_distance::EditType> > __cdecl testing::internal::edit_distance::CalculateOptimalEdits(class std::vector<unsigned __int64,class std::allocator<unsigned __int64> > const &,class std::vector<unsigned __int64,class std::allocator<unsigned __int64> > const &)" (?CalculateOptimalEdits@edit_distance@internal@testing@@YA?AV?$vector@W4EditType@edit_distance@internal@testing@@V?$allocator@W4EditType@edit_distance@internal@testing@@@std@@@std@@AEBV?$vector@_KV?$allocator@_K@std@@@5@0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::vector<enum testing::internal::edit_distance::EditType,class std::allocator<enum testing::internal::edit_distance::EditType> > __cdecl testing::internal::edit_distance::CalculateOptimalEdits(class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > const &,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > const &)" (?CalculateOptimalEdits@edit_distance@internal@testing@@YA?AV?$vector@W4EditType@edit_distance@internal@testing@@V?$allocator@W4EditType@edit_distance@internal@testing@@@std@@@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::edit_distance::CreateUnifiedDiff(class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > const &,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > const &,unsigned __int64)" (?CreateUnifiedDiff@edit_distance@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@0_K@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::EqFailure(char const *,char const *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?EqFailure@internal@testing@@YA?AVAssertionResult@2@PEBD0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@1_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::GetBoolAssertionFailureMessage(class testing::AssertionResult const &,char const *,char const *,char const *)" (?GetBoolAssertionFailureMessage@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVAssertionResult@2@PEBD11@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void const * __cdecl testing::internal::GetTestTypeId(void)" (?GetTestTypeId@internal@testing@@YAPEBXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::IsHRESULTSuccess(char const *,long)" (?IsHRESULTSuccess@internal@testing@@YA?AVAssertionResult@2@PEBDJ@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::IsHRESULTFailure(char const *,long)" (?IsHRESULTFailure@internal@testing@@YA?AVAssertionResult@2@PEBDJ@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::TestInfo * __cdecl testing::internal::MakeAndRegisterTestInfo(char const *,char const *,char const *,char const *,struct testing::internal::CodeLocation,void const *,void (__cdecl*)(void),void (__cdecl*)(void),class testing::internal::TestFactoryBase *)" (?MakeAndRegisterTestInfo@internal@testing@@YAPEAVTestInfo@2@PEBD000UCodeLocation@12@PEBXP6AXXZ3PEAVTestFactoryBase@12@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::SkipPrefix(char const *,char const * *)" (?SkipPrefix@internal@testing@@YA_NPEBDPEAPEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: char const * __cdecl testing::internal::TypedTestSuitePState::VerifyRegisteredTestNames(char const *,char const *,int,char const *)" (?VerifyRegisteredTestNames@TypedTestSuitePState@internal@testing@@QEAAPEBDPEBD0H0@Z) already defined in gtest-typed-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::SplitString(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,char,class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > *)" (?SplitString@internal@testing@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@DPEAV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@4@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::RegisterTypeParameterizedTestSuite(char const *,struct testing::internal::CodeLocation)" (?RegisterTypeParameterizedTestSuite@internal@testing@@YAXPEBDUCodeLocation@12@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::RegisterTypeParameterizedTestSuiteInstantiation(char const *)" (?RegisterTypeParameterizedTestSuiteInstantiation@internal@testing@@YAXPEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::GetCurrentOsStackTraceExceptTop(class testing::UnitTest *,int)" (?GetCurrentOsStackTraceExceptTop@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAVUnitTest@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::AlwaysTrue(void)" (?AlwaysTrue@internal@testing@@YA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: unsigned int __cdecl testing::internal::Random::Generate(unsigned int)" (?Generate@Random@internal@testing@@QEAAII@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintBytesInObjectTo(unsigned char const *,unsigned __int64,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintBytesInObjectTo@internal@testing@@YAXPEBE_KPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(unsigned char,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAXEPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(signed char,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAXCPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(wchar_t,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAX_WPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(char32_t,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAX_UPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(char const *,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAXPEBDPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(char16_t const *,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAXPEB_SPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(char32_t const *,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAXPEB_UPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintTo(wchar_t const *,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintTo@internal@testing@@YAXPEB_WPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintStringTo(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintStringTo@internal@testing@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV?$basic_ostream@DU?$char_traits@D@std@@@4@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintU16StringTo(class std::basic_string<char16_t,struct std::char_traits<char16_t>,class std::allocator<char16_t> > const &,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintU16StringTo@internal@testing@@YAXAEBV?$basic_string@_SU?$char_traits@_S@std@@V?$allocator@_S@2@@std@@PEAV?$basic_ostream@DU?$char_traits@D@std@@@4@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintU32StringTo(class std::basic_string<char32_t,struct std::char_traits<char32_t>,class std::allocator<char32_t> > const &,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintU32StringTo@internal@testing@@YAXAEBV?$basic_string@_UU?$char_traits@_U@std@@V?$allocator@_U@2@@std@@PEAV?$basic_ostream@DU?$char_traits@D@std@@@4@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::PrintWideStringTo(class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const &,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?PrintWideStringTo@internal@testing@@YAXAEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@PEAV?$basic_ostream@DU?$char_traits@D@std@@@4@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::UniversalPrintArray(char const *,unsigned __int64,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?UniversalPrintArray@internal@testing@@YAXPEBD_KPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::UniversalPrintArray(char16_t const *,unsigned __int64,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?UniversalPrintArray@internal@testing@@YAXPEB_S_KPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::UniversalPrintArray(char32_t const *,unsigned __int64,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?UniversalPrintArray@internal@testing@@YAXPEB_U_KPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::UniversalPrintArray(wchar_t const *,unsigned __int64,class std::basic_ostream<char,struct std::char_traits<char> > *)" (?UniversalPrintArray@internal@testing@@YAXPEB_W_KPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) already defined in gtest-printers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &>::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &>(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$Matcher@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@testing@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in gtest-matchers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &>::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &>(char const *)" (??0?$Matcher@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@testing@@QEAA@PEBD@Z) already defined in gtest-matchers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0?$Matcher@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@testing@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in gtest-matchers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(char const *)" (??0?$Matcher@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@testing@@QEAA@PEBD@Z) already defined in gtest-matchers.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::DeathTest::Create(char const *,class testing::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &>,char const *,int,class testing::internal::DeathTest * *)" (?Create@DeathTest@internal@testing@@SA_NPEBDV?$Matcher@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@3@0HPEAPEAV123@@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::DeathTest::DeathTest(void)" (??0DeathTest@internal@testing@@QEAA@XZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static char const * __cdecl testing::internal::DeathTest::LastMessage(void)" (?LastMessage@DeathTest@internal@testing@@SAPEBDXZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static void __cdecl testing::internal::DeathTest::set_last_death_test_message(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?set_last_death_test_message@DeathTest@internal@testing@@SAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual bool __cdecl testing::internal::DefaultDeathTestFactory::Create(char const *,class testing::Matcher<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &>,char const *,int,class testing::internal::DeathTest * *)" (?Create@DefaultDeathTestFactory@internal@testing@@UEAA_NPEBDV?$Matcher@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@3@0HPEAPEAVDeathTest@23@@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ExitedUnsuccessfully(int)" (?ExitedUnsuccessfully@internal@testing@@YA_NH@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::internal::InternalRunDeathTestFlag * __cdecl testing::internal::ParseInternalRunDeathTestFlag(void)" (?ParseInternalRunDeathTestFlag@internal@testing@@YAPEAVInternalRunDeathTestFlag@12@XZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::InDeathTestChild(void)" (?InDeathTestChild@internal@testing@@YA_NXZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::ExitedWithCode::ExitedWithCode(int)" (??0ExitedWithCode@testing@@QEAA@H@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::ExitedWithCode::operator()(int)const " (??RExitedWithCode@testing@@QEBA_NH@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::TestPartResult::ExtractSummary(char const *)" (?ExtractSummary@TestPartResult@testing@@CA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBD@Z) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl testing::operator<<(class std::basic_ostream<char,struct std::char_traits<char> > &,class testing::TestPartResult const &)" (??6testing@@YAAEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEAV12@AEBVTestPartResult@0@@Z) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::TestPartResultArray::Append(class testing::TestPartResult const &)" (?Append@TestPartResultArray@testing@@QEAAXAEBVTestPartResult@2@@Z) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestPartResult const & __cdecl testing::TestPartResultArray::GetTestPartResult(int)const " (?GetTestPartResult@TestPartResultArray@testing@@QEBAAEBVTestPartResult@2@H@Z) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestPartResultArray::size(void)const " (?size@TestPartResultArray@testing@@QEBAHXZ) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::HasNewFatalFailureHelper::HasNewFatalFailureHelper(void)" (??0HasNewFatalFailureHelper@internal@testing@@QEAA@XZ) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual __cdecl testing::internal::HasNewFatalFailureHelper::~HasNewFatalFailureHelper(void)" (??1HasNewFatalFailureHelper@internal@testing@@UEAA@XZ) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::HasNewFatalFailureHelper::ReportTestPartResult(class testing::TestPartResult const &)" (?ReportTestPartResult@HasNewFatalFailureHelper@internal@testing@@UEAAXAEBVTestPartResult@3@@Z) already defined in gtest-test-part.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::ReportInvalidTestSuiteType(char const *,struct testing::internal::CodeLocation)" (?ReportInvalidTestSuiteType@internal@testing@@YAXPEBDUCodeLocation@12@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::MarkAsIgnored::MarkAsIgnored(char const *)" (??0MarkAsIgnored@internal@testing@@QEAA@PEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::InsertSyntheticTestCase(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,struct testing::internal::CodeLocation,bool)" (?InsertSyntheticTestCase@internal@testing@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCodeLocation@12@_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::TypeParameterizedTestSuiteRegistry::RegisterTestSuite(char const *,struct testing::internal::CodeLocation)" (?RegisterTestSuite@TypeParameterizedTestSuiteRegistry@internal@testing@@QEAAXPEBDUCodeLocation@23@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::TypeParameterizedTestSuiteRegistry::RegisterInstantiation(char const *)" (?RegisterInstantiation@TypeParameterizedTestSuiteRegistry@internal@testing@@QEAAXPEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::TypeParameterizedTestSuiteRegistry::CheckForInstantiations(void)" (?CheckForInstantiations@TypeParameterizedTestSuiteRegistry@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::ReportFailureInUnknownLocation(enum testing::TestPartResult::Type,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?ReportFailureInUnknownLocation@internal@testing@@YAXW4Type@TestPartResult@2@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > * __cdecl testing::internal::GetIgnoredParameterizedTestSuites(void)" (?GetIgnoredParameterizedTestSuites@internal@testing@@YAPEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual __cdecl testing::Test::~Test(void)" (??1Test@testing@@UEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::Test::HasFatalFailure(void)" (?HasFatalFailure@Test@testing@@SA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::Test::HasNonfatalFailure(void)" (?HasNonfatalFailure@Test@testing@@SA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::Test::IsSkipped(void)" (?IsSkipped@Test@testing@@SA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static void __cdecl testing::Test::RecordProperty(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?RecordProperty@Test@testing@@SAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static void __cdecl testing::Test::RecordProperty(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int)" (?RecordProperty@Test@testing@@SAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: __cdecl testing::Test::Test(void)" (??0Test@testing@@IEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: virtual void __cdecl testing::Test::SetUp(void)" (?SetUp@Test@testing@@MEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: virtual void __cdecl testing::Test::TearDown(void)" (?TearDown@Test@testing@@MEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static bool __cdecl testing::Test::HasSameFixtureClass(void)" (?HasSameFixtureClass@Test@testing@@CA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::Test::Run(void)" (?Run@Test@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::TestResult::TestResult(void)" (??0TestResult@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::TestResult::~TestResult(void)" (??1TestResult@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestResult::total_part_count(void)const " (?total_part_count@TestResult@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestResult::test_property_count(void)const " (?test_property_count@TestResult@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::TestResult::Skipped(void)const " (?Skipped@TestResult@testing@@QEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::TestResult::Failed(void)const " (?Failed@TestResult@testing@@QEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::TestResult::HasFatalFailure(void)const " (?HasFatalFailure@TestResult@testing@@QEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::TestResult::HasNonfatalFailure(void)const " (?HasNonfatalFailure@TestResult@testing@@QEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestPartResult const & __cdecl testing::TestResult::GetTestPartResult(int)const " (?GetTestPartResult@TestResult@testing@@QEBAAEBVTestPartResult@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestProperty const & __cdecl testing::TestResult::GetTestProperty(int)const " (?GetTestProperty@TestResult@testing@@QEBAAEBVTestProperty@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestResult::RecordProperty(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class testing::TestProperty const &)" (?RecordProperty@TestResult@testing@@AEAAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVTestProperty@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static bool __cdecl testing::TestResult::ValidateTestProperty(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class testing::TestProperty const &)" (?ValidateTestProperty@TestResult@testing@@CA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVTestProperty@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestResult::AddTestPartResult(class testing::TestPartResult const &)" (?AddTestPartResult@TestResult@testing@@AEAAXAEBVTestPartResult@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestResult::ClearTestPartResults(void)" (?ClearTestPartResults@TestResult@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestResult::Clear(void)" (?Clear@TestResult@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::TestInfo::~TestInfo(void)" (??1TestInfo@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: __cdecl testing::TestInfo::TestInfo(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,char const *,char const *,struct testing::internal::CodeLocation,void const *,class testing::internal::TestFactoryBase *)" (??0TestInfo@testing@@AEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0PEBD1UCodeLocation@internal@1@PEBXPEAVTestFactoryBase@51@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestInfo::Run(void)" (?Run@TestInfo@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestInfo::Skip(void)" (?Skip@TestInfo@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::TestSuite::TestSuite(char const *,char const *,void (__cdecl*)(void),void (__cdecl*)(void))" (??0TestSuite@testing@@QEAA@PEBD0P6AXXZ1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual __cdecl testing::TestSuite::~TestSuite(void)" (??1TestSuite@testing@@UEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::successful_test_count(void)const " (?successful_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::skipped_test_count(void)const " (?skipped_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::failed_test_count(void)const " (?failed_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::reportable_disabled_test_count(void)const " (?reportable_disabled_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::disabled_test_count(void)const " (?disabled_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::reportable_test_count(void)const " (?reportable_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::test_to_run_count(void)const " (?test_to_run_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::TestSuite::total_test_count(void)const " (?total_test_count@TestSuite@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestInfo const * __cdecl testing::TestSuite::GetTestInfo(int)const " (?GetTestInfo@TestSuite@testing@@QEBAPEBVTestInfo@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: class testing::TestInfo * __cdecl testing::TestSuite::GetMutableTestInfo(int)" (?GetMutableTestInfo@TestSuite@testing@@AEAAPEAVTestInfo@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestSuite::AddTestInfo(class testing::TestInfo *)" (?AddTestInfo@TestSuite@testing@@AEAAXPEAVTestInfo@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestSuite::ClearResult(void)" (?ClearResult@TestSuite@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestSuite::Run(void)" (?Run@TestSuite@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestSuite::Skip(void)" (?Skip@TestSuite@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestSuite::ShuffleTests(class testing::internal::Random *)" (?ShuffleTests@TestSuite@testing@@AEAAXPEAVRandom@internal@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestSuite::UnshuffleTests(void)" (?UnshuffleTests@TestSuite@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::TestEventListeners::TestEventListeners(void)" (??0TestEventListeners@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::TestEventListeners::~TestEventListeners(void)" (??1TestEventListeners@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::TestEventListeners::Append(class testing::TestEventListener *)" (?Append@TestEventListeners@testing@@QEAAXPEAVTestEventListener@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestEventListener * __cdecl testing::TestEventListeners::Release(class testing::TestEventListener *)" (?Release@TestEventListeners@testing@@QEAAPEAVTestEventListener@2@PEAV32@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: class testing::TestEventListener * __cdecl testing::TestEventListeners::repeater(void)" (?repeater@TestEventListeners@testing@@AEAAPEAVTestEventListener@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestEventListeners::SetDefaultResultPrinter(class testing::TestEventListener *)" (?SetDefaultResultPrinter@TestEventListeners@testing@@AEAAXPEAVTestEventListener@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestEventListeners::SetDefaultXmlGenerator(class testing::TestEventListener *)" (?SetDefaultXmlGenerator@TestEventListeners@testing@@AEAAXPEAVTestEventListener@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: bool __cdecl testing::TestEventListeners::EventForwardingEnabled(void)const " (?EventForwardingEnabled@TestEventListeners@testing@@AEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::TestEventListeners::SuppressEventForwarding(void)" (?SuppressEventForwarding@TestEventListeners@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class testing::UnitTest * __cdecl testing::UnitTest::GetInstance(void)" (?GetInstance@UnitTest@testing@@SAPEAV12@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::Run(void)" (?Run@UnitTest@testing@@QEAAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: char const * __cdecl testing::UnitTest::original_working_dir(void)const " (?original_working_dir@UnitTest@testing@@QEBAPEBDXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestSuite const * __cdecl testing::UnitTest::current_test_suite(void)const " (?current_test_suite@UnitTest@testing@@QEBAPEBVTestSuite@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestSuite const * __cdecl testing::UnitTest::current_test_case(void)const " (?current_test_case@UnitTest@testing@@QEBAPEBVTestSuite@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestInfo const * __cdecl testing::UnitTest::current_test_info(void)const " (?current_test_info@UnitTest@testing@@QEBAPEBVTestInfo@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::random_seed(void)const " (?random_seed@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::internal::ParameterizedTestSuiteRegistry & __cdecl testing::UnitTest::parameterized_test_registry(void)" (?parameterized_test_registry@UnitTest@testing@@QEAAAEAVParameterizedTestSuiteRegistry@internal@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::successful_test_suite_count(void)const " (?successful_test_suite_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::failed_test_suite_count(void)const " (?failed_test_suite_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::total_test_suite_count(void)const " (?total_test_suite_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::test_suite_to_run_count(void)const " (?test_suite_to_run_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::successful_test_case_count(void)const " (?successful_test_case_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::failed_test_case_count(void)const " (?failed_test_case_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::total_test_case_count(void)const " (?total_test_case_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::test_case_to_run_count(void)const " (?test_case_to_run_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::successful_test_count(void)const " (?successful_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::skipped_test_count(void)const " (?skipped_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::failed_test_count(void)const " (?failed_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::reportable_disabled_test_count(void)const " (?reportable_disabled_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::disabled_test_count(void)const " (?disabled_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::reportable_test_count(void)const " (?reportable_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::total_test_count(void)const " (?total_test_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::UnitTest::test_to_run_count(void)const " (?test_to_run_count@UnitTest@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __int64 __cdecl testing::UnitTest::start_timestamp(void)const " (?start_timestamp@UnitTest@testing@@QEBA_JXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __int64 __cdecl testing::UnitTest::elapsed_time(void)const " (?elapsed_time@UnitTest@testing@@QEBA_JXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::UnitTest::Passed(void)const " (?Passed@UnitTest@testing@@QEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::UnitTest::Failed(void)const " (?Failed@UnitTest@testing@@QEBA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestSuite const * __cdecl testing::UnitTest::GetTestSuite(int)const " (?GetTestSuite@UnitTest@testing@@QEBAPEBVTestSuite@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestSuite const * __cdecl testing::UnitTest::GetTestCase(int)const " (?GetTestCase@UnitTest@testing@@QEBAPEBVTestSuite@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestResult const & __cdecl testing::UnitTest::ad_hoc_test_result(void)const " (?ad_hoc_test_result@UnitTest@testing@@QEBAAEBVTestResult@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestEventListeners & __cdecl testing::UnitTest::listeners(void)" (?listeners@UnitTest@testing@@QEAAAEAVTestEventListeners@2@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: class testing::Environment * __cdecl testing::UnitTest::AddEnvironment(class testing::Environment *)" (?AddEnvironment@UnitTest@testing@@AEAAPEAVEnvironment@2@PEAV32@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::UnitTest::AddTestPartResult(enum testing::TestPartResult::Type,char const *,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?AddTestPartResult@UnitTest@testing@@AEAAXW4Type@TestPartResult@2@PEBDHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@2@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::UnitTest::RecordProperty(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?RecordProperty@UnitTest@testing@@AEAAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: class testing::TestSuite * __cdecl testing::UnitTest::GetMutableTestSuite(int)" (?GetMutableTestSuite@UnitTest@testing@@AEAAPEAVTestSuite@2@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: __cdecl testing::UnitTest::UnitTest(void)" (??0UnitTest@testing@@AEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: virtual __cdecl testing::UnitTest::~UnitTest(void)" (??1UnitTest@testing@@EEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::UnitTest::PushGTestTrace(struct testing::internal::TraceInfo const &)" (?PushGTestTrace@UnitTest@testing@@AEAAXAEBUTraceInfo@internal@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::UnitTest::PopGTestTrace(void)" (?PopGTestTrace@UnitTest@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::InitGoogleTest(int *,char * *)" (?InitGoogleTest@testing@@YAXPEAHPEAPEAD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::InitGoogleTest(int *,wchar_t * *)" (?InitGoogleTest@testing@@YAXPEAHPEAPEA_W@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::InitGoogleTest(void)" (?InitGoogleTest@testing@@YAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::CmpHelperSTREQ(char const *,char const *,char const *,char const *)" (?CmpHelperSTREQ@internal@testing@@YA?AVAssertionResult@2@PEBD000@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::CmpHelperSTRCASEEQ(char const *,char const *,char const *,char const *)" (?CmpHelperSTRCASEEQ@internal@testing@@YA?AVAssertionResult@2@PEBD000@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::CmpHelperSTRNE(char const *,char const *,char const *,char const *)" (?CmpHelperSTRNE@internal@testing@@YA?AVAssertionResult@2@PEBD000@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::CmpHelperSTRCASENE(char const *,char const *,char const *,char const *)" (?CmpHelperSTRCASENE@internal@testing@@YA?AVAssertionResult@2@PEBD000@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::CmpHelperSTREQ(char const *,char const *,wchar_t const *,wchar_t const *)" (?CmpHelperSTREQ@internal@testing@@YA?AVAssertionResult@2@PEBD0PEB_W1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::CmpHelperSTRNE(char const *,char const *,wchar_t const *,wchar_t const *)" (?CmpHelperSTRNE@internal@testing@@YA?AVAssertionResult@2@PEBD0PEB_W1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsSubstring(char const *,char const *,char const *,char const *)" (?IsSubstring@testing@@YA?AVAssertionResult@1@PEBD000@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsSubstring(char const *,char const *,wchar_t const *,wchar_t const *)" (?IsSubstring@testing@@YA?AVAssertionResult@1@PEBD0PEB_W1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsNotSubstring(char const *,char const *,char const *,char const *)" (?IsNotSubstring@testing@@YA?AVAssertionResult@1@PEBD000@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsNotSubstring(char const *,char const *,wchar_t const *,wchar_t const *)" (?IsNotSubstring@testing@@YA?AVAssertionResult@1@PEBD0PEB_W1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsSubstring(char const *,char const *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?IsSubstring@testing@@YA?AVAssertionResult@1@PEBD0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsNotSubstring(char const *,char const *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?IsNotSubstring@testing@@YA?AVAssertionResult@1@PEBD0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsSubstring(char const *,char const *,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const &,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const &)" (?IsSubstring@testing@@YA?AVAssertionResult@1@PEBD0AEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::IsNotSubstring(char const *,char const *,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const &,class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > const &)" (?IsNotSubstring@testing@@YA?AVAssertionResult@1@PEBD0AEBV?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::internal::DoubleNearPredFormat(char const *,char const *,char const *,double,double,double)" (?DoubleNearPredFormat@internal@testing@@YA?AVAssertionResult@2@PEBD00NNN@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::AssertHelper::AssertHelper(enum testing::TestPartResult::Type,char const *,int,char const *)" (??0AssertHelper@internal@testing@@QEAA@W4Type@TestPartResult@2@PEBDH1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::AssertHelper::~AssertHelper(void)" (??1AssertHelper@internal@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::AssertHelper::operator=(class testing::Message const &)const " (??4AssertHelper@internal@testing@@QEBAXAEBVMessage@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::FloatLE(char const *,char const *,float,float)" (?FloatLE@testing@@YA?AVAssertionResult@1@PEBD0MM@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::AssertionResult __cdecl testing::DoubleLE(char const *,char const *,double,double)" (?DoubleLE@testing@@YA?AVAssertionResult@1@PEBD0NN@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::ScopedTrace::~ScopedTrace(void)" (??1ScopedTrace@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::ScopedTrace::PushTrace(char const *,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?PushTrace@ScopedTrace@testing@@AEAAXPEBDHV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::TempDir(void)" (?TempDir@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter(class testing::TestPartResultArray *)" (??0ScopedFakeTestPartResultReporter@testing@@QEAA@PEAVTestPartResultArray@1@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter(enum testing::ScopedFakeTestPartResultReporter::InterceptMode,class testing::TestPartResultArray *)" (??0ScopedFakeTestPartResultReporter@testing@@QEAA@W4InterceptMode@01@PEAVTestPartResultArray@1@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual __cdecl testing::ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter(void)" (??1ScopedFakeTestPartResultReporter@testing@@UEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::ScopedFakeTestPartResultReporter::ReportTestPartResult(class testing::TestPartResult const &)" (?ReportTestPartResult@ScopedFakeTestPartResultReporter@testing@@UEAAXAEBVTestPartResult@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: void __cdecl testing::ScopedFakeTestPartResultReporter::Init(void)" (?Init@ScopedFakeTestPartResultReporter@testing@@AEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::SingleFailureChecker::SingleFailureChecker(class testing::TestPartResultArray const *,enum testing::TestPartResult::Type,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0SingleFailureChecker@internal@testing@@QEAA@PEBVTestPartResultArray@2@W4Type@TestPartResult@2@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::SingleFailureChecker::~SingleFailureChecker(void)" (??1SingleFailureChecker@internal@testing@@QEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "__int64 __cdecl testing::internal::GetTimeInMillis(void)" (?GetTimeInMillis@internal@testing@@YA_JXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ShouldUseColor(bool)" (?ShouldUseColor@internal@testing@@YA_N_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::FormatTimeInMillisAsSeconds(__int64)" (?FormatTimeInMillisAsSeconds@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_J@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::FormatEpochTimeInMillisAsIso8601(__int64)" (?FormatEpochTimeInMillisAsIso8601@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_J@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ParseFlag(char const *,char const *,int *)" (?ParseFlag@internal@testing@@YA_NPEBD0PEAH@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::CodePointToUtf8(unsigned int)" (?CodePointToUtf8@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::WideStringToUtf8(wchar_t const *,int)" (?WideStringToUtf8@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEB_WH@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::WriteToShardStatusFileIfNeeded(void)" (?WriteToShardStatusFileIfNeeded@internal@testing@@YAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ShouldShard(char const *,char const *,bool)" (?ShouldShard@internal@testing@@YA_NPEBD0_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "int __cdecl testing::internal::Int32FromEnvOrDie(char const *,int)" (?Int32FromEnvOrDie@internal@testing@@YAHPEBDH@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ShouldRunTestOnShard(int,int,int)" (?ShouldRunTestOnShard@internal@testing@@YA_NHHH@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::UnitTestOptions::GetOutputFormat(void)" (?GetOutputFormat@UnitTestOptions@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::UnitTestOptions::GetAbsolutePathToOutputFile(void)" (?GetAbsolutePathToOutputFile@UnitTestOptions@internal@testing@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::UnitTestOptions::FilterMatchesTest(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?FilterMatchesTest@UnitTestOptions@internal@testing@@SA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static int __cdecl testing::internal::UnitTestOptions::GTestShouldProcessSEH(unsigned long)" (?GTestShouldProcessSEH@UnitTestOptions@internal@testing@@SAHK@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static bool __cdecl testing::internal::UnitTestOptions::MatchesFilter(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,char const *)" (?MatchesFilter@UnitTestOptions@internal@testing@@SA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class testing::internal::FilePath __cdecl testing::internal::GetCurrentExecutableName(void)" (?GetCurrentExecutableName@internal@testing@@YA?AVFilePath@12@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::OsStackTraceGetter::CurrentStackTrace(int,int)" (?CurrentStackTrace@OsStackTraceGetter@internal@testing@@UEAA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HH@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::OsStackTraceGetter::UponLeavingGTest(void)" (?UponLeavingGTest@OsStackTraceGetter@internal@testing@@UEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter(class testing::internal::UnitTestImpl *)" (??0DefaultGlobalTestPartResultReporter@internal@testing@@QEAA@PEAVUnitTestImpl@12@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::DefaultGlobalTestPartResultReporter::ReportTestPartResult(class testing::TestPartResult const &)" (?ReportTestPartResult@DefaultGlobalTestPartResultReporter@internal@testing@@UEAAXAEBVTestPartResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter(class testing::internal::UnitTestImpl *)" (??0DefaultPerThreadTestPartResultReporter@internal@testing@@QEAA@PEAVUnitTestImpl@12@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::DefaultPerThreadTestPartResultReporter::ReportTestPartResult(class testing::TestPartResult const &)" (?ReportTestPartResult@DefaultPerThreadTestPartResultReporter@internal@testing@@UEAAXAEBVTestPartResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::UnitTestImpl::UnitTestImpl(class testing::UnitTest *)" (??0UnitTestImpl@internal@testing@@QEAA@PEAVUnitTest@2@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual __cdecl testing::internal::UnitTestImpl::~UnitTestImpl(void)" (??1UnitTestImpl@internal@testing@@UEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestPartResultReporterInterface * __cdecl testing::internal::UnitTestImpl::GetGlobalTestPartResultReporter(void)" (?GetGlobalTestPartResultReporter@UnitTestImpl@internal@testing@@QEAAPEAVTestPartResultReporterInterface@3@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::SetGlobalTestPartResultReporter(class testing::TestPartResultReporterInterface *)" (?SetGlobalTestPartResultReporter@UnitTestImpl@internal@testing@@QEAAXPEAVTestPartResultReporterInterface@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestPartResultReporterInterface * __cdecl testing::internal::UnitTestImpl::GetTestPartResultReporterForCurrentThread(void)" (?GetTestPartResultReporterForCurrentThread@UnitTestImpl@internal@testing@@QEAAPEAVTestPartResultReporterInterface@3@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::SetTestPartResultReporterForCurrentThread(class testing::TestPartResultReporterInterface *)" (?SetTestPartResultReporterForCurrentThread@UnitTestImpl@internal@testing@@QEAAXPEAVTestPartResultReporterInterface@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::successful_test_suite_count(void)const " (?successful_test_suite_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::failed_test_suite_count(void)const " (?failed_test_suite_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::total_test_suite_count(void)const " (?total_test_suite_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::test_suite_to_run_count(void)const " (?test_suite_to_run_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::successful_test_count(void)const " (?successful_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::skipped_test_count(void)const " (?skipped_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::failed_test_count(void)const " (?failed_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::reportable_disabled_test_count(void)const " (?reportable_disabled_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::disabled_test_count(void)const " (?disabled_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::reportable_test_count(void)const " (?reportable_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::total_test_count(void)const " (?total_test_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::test_to_run_count(void)const " (?test_to_run_count@UnitTestImpl@internal@testing@@QEBAHXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestResult * __cdecl testing::internal::UnitTestImpl::current_test_result(void)" (?current_test_result@UnitTestImpl@internal@testing@@QEAAPEAVTestResult@3@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::set_os_stack_trace_getter(class testing::internal::OsStackTraceGetterInterface *)" (?set_os_stack_trace_getter@UnitTestImpl@internal@testing@@QEAAXPEAVOsStackTraceGetterInterface@23@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::internal::OsStackTraceGetterInterface * __cdecl testing::internal::UnitTestImpl::os_stack_trace_getter(void)" (?os_stack_trace_getter@UnitTestImpl@internal@testing@@QEAAPEAVOsStackTraceGetterInterface@23@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::UnitTestImpl::CurrentOsStackTraceExceptTop(int)" (?CurrentOsStackTraceExceptTop@UnitTestImpl@internal@testing@@QEAA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestSuite * __cdecl testing::internal::UnitTestImpl::GetTestSuite(char const *,char const *,void (__cdecl*)(void),void (__cdecl*)(void))" (?GetTestSuite@UnitTestImpl@internal@testing@@QEAAPEAVTestSuite@3@PEBD0P6AXXZ1@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::RegisterParameterizedTests(void)" (?RegisterParameterizedTests@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: bool __cdecl testing::internal::UnitTestImpl::RunAllTests(void)" (?RunAllTests@UnitTestImpl@internal@testing@@QEAA_NXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::RecordProperty(class testing::TestProperty const &)" (?RecordProperty@UnitTestImpl@internal@testing@@QEAAXAEBVTestProperty@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: int __cdecl testing::internal::UnitTestImpl::FilterTests(enum testing::internal::UnitTestImpl::ReactionToSharding)" (?FilterTests@UnitTestImpl@internal@testing@@QEAAHW4ReactionToSharding@123@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::ListTestsMatchingFilter(void)" (?ListTestsMatchingFilter@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::SuppressTestEventsIfInSubprocess(void)" (?SuppressTestEventsIfInSubprocess@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::ConfigureXmlOutput(void)" (?ConfigureXmlOutput@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::PostFlagParsingInit(void)" (?PostFlagParsingInit@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::ShuffleTests(void)" (?ShuffleTests@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::UnitTestImpl::UnshuffleTests(void)" (?UnshuffleTests@UnitTestImpl@internal@testing@@QEAAXXZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsInSet(char,char const *)" (?IsInSet@internal@testing@@YA_NDPEBD@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsAsciiDigit(char)" (?IsAsciiDigit@internal@testing@@YA_ND@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsAsciiPunct(char)" (?IsAsciiPunct@internal@testing@@YA_ND@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsRepeat(char)" (?IsRepeat@internal@testing@@YA_ND@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsAsciiWhiteSpace(char)" (?IsAsciiWhiteSpace@internal@testing@@YA_ND@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsAsciiWordChar(char)" (?IsAsciiWordChar@internal@testing@@YA_ND@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::IsValidEscape(char)" (?IsValidEscape@internal@testing@@YA_ND@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::AtomMatchesChar(bool,char,char)" (?AtomMatchesChar@internal@testing@@YA_N_NDD@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::ValidateRegex(char const *)" (?ValidateRegex@internal@testing@@YA_NPEBD@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::MatchRegexAtHead(char const *,char const *)" (?MatchRegexAtHead@internal@testing@@YA_NPEBD0@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::MatchRepetitionAndRegexAtHead(bool,char,char,char const *,char const *)" (?MatchRepetitionAndRegexAtHead@internal@testing@@YA_N_NDDPEBD1@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool __cdecl testing::internal::MatchRegexAnywhere(char const *,char const *)" (?MatchRegexAnywhere@internal@testing@@YA_NPEBD0@Z) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::ParseGoogleTestFlagsOnly(int *,char * *)" (?ParseGoogleTestFlagsOnly@internal@testing@@YAXPEAHPEAPEAD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void __cdecl testing::internal::ParseGoogleTestFlagsOnly(int *,wchar_t * *)" (?ParseGoogleTestFlagsOnly@internal@testing@@YAXPEAHPEAPEA_W@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::GetLastErrnoDescription(void)" (?GetLastErrnoDescription@internal@testing@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestIterationStart(class testing::UnitTest const &,int)" (?OnTestIterationStart@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart(class testing::UnitTest const &)" (?OnEnvironmentsSetUpStart@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestCaseStart(class testing::TestSuite const &)" (?OnTestCaseStart@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestStart(class testing::TestInfo const &)" (?OnTestStart@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestDisabled(class testing::TestInfo const &)" (?OnTestDisabled@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestPartResult(class testing::TestPartResult const &)" (?OnTestPartResult@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestPartResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestEnd(class testing::TestInfo const &)" (?OnTestEnd@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestCaseEnd(class testing::TestSuite const &)" (?OnTestCaseEnd@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart(class testing::UnitTest const &)" (?OnEnvironmentsTearDownStart@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::PrettyUnitTestResultPrinter::OnTestIterationEnd(class testing::UnitTest const &,int)" (?OnTestIterationEnd@PrettyUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::PrettyUnitTestResultPrinter::PrintFailedTests(class testing::UnitTest const &)" (?PrintFailedTests@PrettyUnitTestResultPrinter@internal@testing@@CAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::PrettyUnitTestResultPrinter::PrintFailedTestSuites(class testing::UnitTest const &)" (?PrintFailedTestSuites@PrettyUnitTestResultPrinter@internal@testing@@CAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::PrettyUnitTestResultPrinter::PrintSkippedTests(class testing::UnitTest const &)" (?PrintSkippedTests@PrettyUnitTestResultPrinter@internal@testing@@CAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::BriefUnitTestResultPrinter::OnTestPartResult(class testing::TestPartResult const &)" (?OnTestPartResult@BriefUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestPartResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::BriefUnitTestResultPrinter::OnTestEnd(class testing::TestInfo const &)" (?OnTestEnd@BriefUnitTestResultPrinter@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::BriefUnitTestResultPrinter::OnTestIterationEnd(class testing::UnitTest const &,int)" (?OnTestIterationEnd@BriefUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual __cdecl testing::internal::TestEventRepeater::~TestEventRepeater(void)" (??1TestEventRepeater@internal@testing@@UEAA@XZ) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::TestEventRepeater::Append(class testing::TestEventListener *)" (?Append@TestEventRepeater@internal@testing@@QEAAXPEAVTestEventListener@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: class testing::TestEventListener * __cdecl testing::internal::TestEventRepeater::Release(class testing::TestEventListener *)" (?Release@TestEventRepeater@internal@testing@@QEAAPEAVTestEventListener@3@PEAV43@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestProgramStart(class testing::UnitTest const &)" (?OnTestProgramStart@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestIterationStart(class testing::UnitTest const &,int)" (?OnTestIterationStart@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnEnvironmentsSetUpStart(class testing::UnitTest const &)" (?OnEnvironmentsSetUpStart@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnEnvironmentsSetUpEnd(class testing::UnitTest const &)" (?OnEnvironmentsSetUpEnd@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestCaseStart(class testing::TestSuite const &)" (?OnTestCaseStart@TestEventRepeater@internal@testing@@UEAAXAEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestSuiteStart(class testing::TestSuite const &)" (?OnTestSuiteStart@TestEventRepeater@internal@testing@@UEAAXAEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestStart(class testing::TestInfo const &)" (?OnTestStart@TestEventRepeater@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestDisabled(class testing::TestInfo const &)" (?OnTestDisabled@TestEventRepeater@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestPartResult(class testing::TestPartResult const &)" (?OnTestPartResult@TestEventRepeater@internal@testing@@UEAAXAEBVTestPartResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestEnd(class testing::TestInfo const &)" (?OnTestEnd@TestEventRepeater@internal@testing@@UEAAXAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestCaseEnd(class testing::TestSuite const &)" (?OnTestCaseEnd@TestEventRepeater@internal@testing@@UEAAXAEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestSuiteEnd(class testing::TestSuite const &)" (?OnTestSuiteEnd@TestEventRepeater@internal@testing@@UEAAXAEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnEnvironmentsTearDownStart(class testing::UnitTest const &)" (?OnEnvironmentsTearDownStart@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnEnvironmentsTearDownEnd(class testing::UnitTest const &)" (?OnEnvironmentsTearDownEnd@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestIterationEnd(class testing::UnitTest const &,int)" (?OnTestIterationEnd@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::TestEventRepeater::OnTestProgramEnd(class testing::UnitTest const &)" (?OnTestProgramEnd@TestEventRepeater@internal@testing@@UEAAXAEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(char const *)" (??0XmlUnitTestResultPrinter@internal@testing@@QEAA@PEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::XmlUnitTestResultPrinter::OnTestIterationEnd(class testing::UnitTest const &,int)" (?OnTestIterationEnd@XmlUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: void __cdecl testing::internal::XmlUnitTestResultPrinter::ListTestsMatchingFilter(class std::vector<class testing::TestSuite *,class std::allocator<class testing::TestSuite *> > const &)" (?ListTestsMatchingFilter@XmlUnitTestResultPrinter@internal@testing@@QEAAXAEBV?$vector@PEAVTestSuite@testing@@V?$allocator@PEAVTestSuite@testing@@@std@@@std@@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static void __cdecl testing::internal::XmlUnitTestResultPrinter::PrintXmlTestsList(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::vector<class testing::TestSuite *,class std::allocator<class testing::TestSuite *> > const &)" (?PrintXmlTestsList@XmlUnitTestResultPrinter@internal@testing@@SAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBV?$vector@PEAVTestSuite@testing@@V?$allocator@PEAVTestSuite@testing@@@std@@@5@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::XmlUnitTestResultPrinter::EscapeXml(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?EscapeXml@XmlUnitTestResultPrinter@internal@testing@@CA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV45@_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?RemoveInvalidXmlCharacters@XmlUnitTestResultPrinter@internal@testing@@CA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV45@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::OutputXmlAttribute(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?OutputXmlAttribute@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@11@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::OutputXmlCDataSection(class std::basic_ostream<char,struct std::char_traits<char> > *,char const *)" (?OutputXmlCDataSection@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@PEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::OutputXmlTestSuiteForTestResult(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestResult const &)" (?OutputXmlTestSuiteForTestResult@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::OutputXmlTestResult(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestResult const &)" (?OutputXmlTestResult@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::OutputXmlTestInfo(class std::basic_ostream<char,struct std::char_traits<char> > *,char const *,class testing::TestInfo const &)" (?OutputXmlTestInfo@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@PEBDAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::PrintXmlTestSuite(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestSuite const &)" (?PrintXmlTestSuite@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::PrintXmlUnitTest(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::UnitTest const &)" (?PrintXmlUnitTest@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes(class testing::TestResult const &)" (?TestPropertiesAsXmlAttributes@XmlUnitTestResultPrinter@internal@testing@@CA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVTestResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::XmlUnitTestResultPrinter::OutputXmlTestProperties(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestResult const &)" (?OutputXmlTestProperties@XmlUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: __cdecl testing::internal::JsonUnitTestResultPrinter::JsonUnitTestResultPrinter(char const *)" (??0JsonUnitTestResultPrinter@internal@testing@@QEAA@PEBD@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual void __cdecl testing::internal::JsonUnitTestResultPrinter::OnTestIterationEnd(class testing::UnitTest const &,int)" (?OnTestIterationEnd@JsonUnitTestResultPrinter@internal@testing@@UEAAXAEBVUnitTest@3@H@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: static void __cdecl testing::internal::JsonUnitTestResultPrinter::PrintJsonTestList(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::vector<class testing::TestSuite *,class std::allocator<class testing::TestSuite *> > const &)" (?PrintJsonTestList@JsonUnitTestResultPrinter@internal@testing@@SAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBV?$vector@PEAVTestSuite@testing@@V?$allocator@PEAVTestSuite@testing@@@std@@@5@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::JsonUnitTestResultPrinter::EscapeJson(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?EscapeJson@JsonUnitTestResultPrinter@internal@testing@@CA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV45@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::OutputJsonKey(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?OutputJsonKey@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@111_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::OutputJsonKey(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,bool)" (?OutputJsonKey@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@1H1_N@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::OutputJsonTestSuiteForTestResult(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestResult const &)" (?OutputJsonTestSuiteForTestResult@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::OutputJsonTestResult(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestResult const &)" (?OutputJsonTestResult@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestResult@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::OutputJsonTestInfo(class std::basic_ostream<char,struct std::char_traits<char> > *,char const *,class testing::TestInfo const &)" (?OutputJsonTestInfo@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@PEBDAEBVTestInfo@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::PrintJsonTestSuite(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::TestSuite const &)" (?PrintJsonTestSuite@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVTestSuite@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static void __cdecl testing::internal::JsonUnitTestResultPrinter::PrintJsonUnitTest(class std::basic_ostream<char,struct std::char_traits<char> > *,class testing::UnitTest const &)" (?PrintJsonUnitTest@JsonUnitTestResultPrinter@internal@testing@@CAXPEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AEBVUnitTest@3@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::JsonUnitTestResultPrinter::TestPropertiesAsJson(class testing::TestResult const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?TestPropertiesAsJson@JsonUnitTestResultPrinter@internal@testing@@CA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBVTestResult@3@AEBV45@@Z) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: virtual void __cdecl testing::internal::DeathTestImpl::Abort(enum testing::internal::DeathTest::AbortReason)" (?Abort@DeathTestImpl@internal@testing@@MEAAXW4AbortReason@DeathTest@23@@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: virtual bool __cdecl testing::internal::DeathTestImpl::Passed(bool)" (?Passed@DeathTestImpl@internal@testing@@MEAA_N_N@Z) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: void __cdecl testing::internal::DeathTestImpl::ReadAndInterpretStatusByte(void)" (?ReadAndInterpretStatusByte@DeathTestImpl@internal@testing@@IEAAXXZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "protected: virtual class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl testing::internal::DeathTestImpl::GetErrorLogs(void)" (?GetErrorLogs@DeathTestImpl@internal@testing@@MEAA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual int __cdecl testing::internal::WindowsDeathTest::Wait(void)" (?Wait@WindowsDeathTest@internal@testing@@UEAAHXZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "public: virtual enum testing::internal::DeathTest::TestRole __cdecl testing::internal::WindowsDeathTest::AssumeRole(void)" (?AssumeRole@WindowsDeathTest@internal@testing@@UEAA?AW4TestRole@DeathTest@23@XZ) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_internal_run_death_test" (?FLAGS_gtest_internal_run_death_test@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::internal::DeathTest::last_death_test_message_" (?last_death_test_message_@DeathTest@internal@testing@@0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_death_test_style" (?FLAGS_gtest_death_test_style@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_also_run_disabled_tests" (?FLAGS_gtest_also_run_disabled_tests@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_break_on_failure" (?FLAGS_gtest_break_on_failure@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_catch_exceptions" (?FLAGS_gtest_catch_exceptions@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_color" (?FLAGS_gtest_color@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_fail_fast" (?FLAGS_gtest_fail_fast@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_filter" (?FLAGS_gtest_filter@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_install_failure_signal_handler" (?FLAGS_gtest_install_failure_signal_handler@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_output" (?FLAGS_gtest_output@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_brief" (?FLAGS_gtest_brief@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_print_time" (?FLAGS_gtest_print_time@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_print_utf8" (?FLAGS_gtest_print_utf8@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "int testing::FLAGS_gtest_random_seed" (?FLAGS_gtest_random_seed@testing@@3HA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "int testing::FLAGS_gtest_repeat" (?FLAGS_gtest_repeat@testing@@3HA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_recreate_environments_when_repeating" (?FLAGS_gtest_recreate_environments_when_repeating@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_shuffle" (?FLAGS_gtest_shuffle@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "int testing::FLAGS_gtest_stack_trace_depth" (?FLAGS_gtest_stack_trace_depth@testing@@3HA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_throw_on_failure" (?FLAGS_gtest_throw_on_failure@testing@@3_NA) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_stream_result_to" (?FLAGS_gtest_stream_result_to@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > testing::FLAGS_gtest_flagfile" (?FLAGS_gtest_flagfile@testing@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "bool testing::FLAGS_gtest_death_test_use_fork" (?FLAGS_gtest_death_test_use_fork@testing@@3_NA) already defined in gtest-death-test.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "void const * const testing::internal::kTestTypeIdInGoogleTest" (?kTestTypeIdInGoogleTest@internal@testing@@3QEBXEB) already defined in gtest.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class testing::internal::Mutex testing::internal::ThreadLocalRegistryImpl::mutex_" (?mutex_@ThreadLocalRegistryImpl@internal@testing@@0VMutex@23@A) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
Warning LNK4006 "private: static class testing::internal::Mutex testing::internal::ThreadLocalRegistryImpl::thread_map_mutex_" (?thread_map_mutex_@ThreadLocalRegistryImpl@internal@testing@@0VMutex@23@A) already defined in gtest-port.obj; second definition ignored googletest C:\Users\babaliaris\source\repos\VampEngine\External\GOOGLE_TEST\googletest\gtest-all.obj 1
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I actually managed to solve it! I had to set the runtime to MT for both googletest, googlemock as well in the App project! project "googlemock"
+ staticruntime "on" --This will set the /MT in Visual Studio and not the default /MD (which stands for DLL) You must also use the same runtime on your console app (executable) project where you link googletest. You must also make filter{}
filter "configurations:Debug"
defines "DEBUG"
+ runtime "Debug"
symbols "on"
filter{}
filter "configurations:PreRelease"
defines "NDEBUG"
+ runtime "Release"
optimize "on"
filter{}
filter "configurations:Release"
defines "NDEBUG"
+ runtime "Release"
optimize "on"
This stuff must be the same on your Console App as well!!! The LNK4006 warnings are still there though... Do I need to worry about them? PS: filter{}
filter "system:Linux"
pic "On"
- buildoptions {
"-Wall", "-Wshadow", "-Wno-error=dangling-else",
"-fno-exceptions", "-fno-rtti", "-DGTEST_HAS_RTTI=0"
}
+ buildoptions {
"-fno-exceptions", "-Wall", "-Wshadow", "-Wno-error=dangling-else",
"-Wextra", "-Wno-unused-parameter", "-Wno-missing-field-initializers"
}
defines {
- "GTEST_OS_LINUX"
+ "GTEST_OS_LINUX",
+ "GTEST_HAS_RTTI"
} |
Beta Was this translation helpful? Give feedback.
I actually managed to solve it! I had to set the runtime to MT for both googletest, googlemock as well in the App project!
project "googlemock" + staticruntime "on" --This will set the /MT in Visual Studio and not the default /MD (which stands for DLL)
You must also use the same runtime on your console app (executable) project where you link googletest. You must also make
sure that the runtime is the same as well: