mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
DolphinNoGUI: Link against dwmapi.lib on Windows in CMake
Required since 2b261b9306
This commit is contained in:
parent
f6e3c5ccef
commit
5d49500456
1 changed files with 5 additions and 0 deletions
|
@ -41,6 +41,11 @@ if(APPLE)
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(WIN32)
|
||||||
|
# needed for adjusting window decorations with DwmSetWindowAttribute
|
||||||
|
target_link_libraries(dolphin-nogui PRIVATE dwmapi.lib)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
# Add precompiled header
|
# Add precompiled header
|
||||||
target_link_libraries(dolphin-nogui PRIVATE use_pch)
|
target_link_libraries(dolphin-nogui PRIVATE use_pch)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue