You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I link optick in my application, I get the following warnings during compilation:
1>OptickCored.lib(OptickCored.dll) : warning LNK4006: __NULL_IMPORT_DESCRIPTOR already defined in vulkan-1.lib(vulkan-1.dll); second definition ignored
1>MainLoop.obj : warning LNK4006: "public: __cdecl Optick::Event::Event(struct Optick::EventDescription const &)" (??0Event@Optick@@QEAA@AEBUEventDescription@1@@Z) already defined in OptickCored.lib(OptickCored.dll); second definition ignored
1>MainLoop.obj : warning LNK4006: "public: __cdecl Optick::Event::~Event(void)" (??1Event@Optick@@QEAA@XZ) already defined in OptickCored.lib(OptickCored.dll); second definition ignored
When I run the app, it fails because of the DLL location mismatch; however, I don't want to use dynamic library for Optix.
I thought it is possible to run Optick as a static library, not a separate DLL. However, looking into CMakeLists, I couldn't find a way to disable DLL builds.
The text was updated successfully, but these errors were encountered:
I have built Optick using CMake using the following flags:
When I link optick in my application, I get the following warnings during compilation:
When I run the app, it fails because of the DLL location mismatch; however, I don't want to use dynamic library for Optix.
I thought it is possible to run Optick as a static library, not a separate DLL. However, looking into CMakeLists, I couldn't find a way to disable DLL builds.
The text was updated successfully, but these errors were encountered: