Skip to content
Snippets Groups Projects
Commit 8f84814c authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Only Win32 needs dbghelp.dll

parent 3ae0989c
No related branches found
No related tags found
No related merge requests found
Pipeline #6803 passed
......@@ -512,4 +512,6 @@ target_compile_definitions(cl INTERFACE STATIC_LIB)
target_include_directories(cl PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_include_directories(cl INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(cl ${CMAKE_THREAD_LIBS_INIT})
target_link_libraries(cl $<$<CONFIG:Debug>:dbghelp>)
if(WIN32)
target_link_libraries(cl $<$<CONFIG:Debug>:dbghelp>)
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment