dolphin/Source/Core/WinUpdater/CMakeLists.txt

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

21 lines
379 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
Platform.cpp
2019-05-08 21:17:30 +02:00
WinUI.cpp
${MANIFEST_FILE})
target_link_libraries(winupdater PRIVATE
uicommon
updatercommon
Comctl32
)
set_target_properties(winupdater PROPERTIES OUTPUT_NAME "Updater")
2022-05-22 01:19:44 +02:00
if(MSVC)
# Add precompiled header
target_link_libraries(winupdater PRIVATE use_pch)
endif()