dolphin/Source/Core/WinUpdater/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
267 B
CMake
Raw Normal View History

2019-05-08 21:17:30 +02:00
set (MANIFEST_FILE Updater.exe.manifest)
add_executable(winupdater WIN32
Main.cpp
WinUI.cpp
${MANIFEST_FILE})
target_link_libraries(winupdater PRIVATE
uicommon
updatercommon
Comctl32
)
set_target_properties(winupdater PROPERTIES OUTPUT_NAME "Updater")