The debug shared library only works on windows

This commit is contained in:
parker-int64 2023-05-26 10:24:30 +08:00
parent a123dfbccf
commit f1589e9d1a

View File

@ -72,4 +72,9 @@ if(WIN32)
endif() endif()
#debugd #debugd
set_target_properties(fluentuiplugin PROPERTIES DEBUG_POSTFIX "d") # MinGWGCC/Clang, `d`
if(MSVC)
set_target_properties(fluentuiplugin PROPERTIES DEBUG_POSTFIX "d")
endif(MSVC)