diff options
| author | bgaldrikian <[email protected]> | 2020-11-10 20:53:31 -0800 |
|---|---|---|
| committer | bgaldrikian <[email protected]> | 2020-11-10 20:53:31 -0800 |
| commit | d61c455a4775f966b44cc47804b9e0f160d3d332 (patch) | |
| tree | 7eff987598048409fe4ec9a1f733a87356f3aa21 /test/src/unit/APITests.cpp | |
| parent | * Updated license file (diff) | |
| download | blast-1.1.7_rc1.tar.xz blast-1.1.7_rc1.zip | |
Merge request #17 PhysX4 compatibilityv1.1.7_rc1
Other changes for linux and UE4CrossCompileLinux, and all packaging to work
Diffstat (limited to 'test/src/unit/APITests.cpp')
| -rwxr-xr-x | test/src/unit/APITests.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/src/unit/APITests.cpp b/test/src/unit/APITests.cpp index 44f79be..ee00bb2 100755 --- a/test/src/unit/APITests.cpp +++ b/test/src/unit/APITests.cpp @@ -1609,26 +1609,10 @@ TEST_F(APITest,CExportsNoNameMangling) //
#if NV_WIN32
-#if NV_DEBUG
- const char* dllName = "NvBlastDebug_x86.dll";
-#elif NV_CHECKED
- const char* dllName = "NvBlastChecked_x86.dll";
-#elif NV_PROFILE
- const char* dllName = "NvBlastProfile_x86.dll";
-#else
const char* dllName = "NvBlast_x86.dll";
-#endif
#elif NV_WIN64
-#if NV_DEBUG
- const char* dllName = "NvBlastDebug_x64.dll";
-#elif NV_CHECKED
- const char* dllName = "NvBlastChecked_x64.dll";
-#elif NV_PROFILE
- const char* dllName = "NvBlastProfile_x64.dll";
-#else
const char* dllName = "NvBlast_x64.dll";
#endif
-#endif
HMODULE dllHandle = LoadLibrary(TEXT(dllName));
DWORD error = GetLastError();
|