mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
15 lines
267 B
CMake
15 lines
267 B
CMake
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")
|