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")
|