mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #8087 from spycrab/cmake_win2019
Support CMake on Windows
This commit is contained in:
@ -69,6 +69,14 @@ if (APPLE)
|
||||
${COREFOUNDATION_LIBRARY}
|
||||
${IOK_LIBRARY}
|
||||
)
|
||||
elseif(WIN32)
|
||||
target_link_libraries(common
|
||||
PRIVATE
|
||||
kernel32.lib
|
||||
shlwapi.lib
|
||||
opengl32.lib
|
||||
winmm.lib
|
||||
)
|
||||
endif()
|
||||
|
||||
if(ANDROID)
|
||||
@ -78,6 +86,7 @@ if(ANDROID)
|
||||
)
|
||||
elseif(WIN32)
|
||||
target_sources(common PRIVATE
|
||||
LdrWatcher.cpp
|
||||
Logging/ConsoleListenerWin.cpp
|
||||
)
|
||||
else()
|
||||
|
Reference in New Issue
Block a user