DolphinNoGUI: Link against dwmapi.lib on Windows in CMake
Required since 2b261b9306
This commit is contained in:
parent
f6e3c5ccef
commit
5d49500456
|
@ -41,6 +41,11 @@ if(APPLE)
|
|||
)
|
||||
endif()
|
||||
|
||||
if(WIN32)
|
||||
# needed for adjusting window decorations with DwmSetWindowAttribute
|
||||
target_link_libraries(dolphin-nogui PRIVATE dwmapi.lib)
|
||||
endif()
|
||||
|
||||
if(MSVC)
|
||||
# Add precompiled header
|
||||
target_link_libraries(dolphin-nogui PRIVATE use_pch)
|
||||
|
|
Loading…
Reference in New Issue