| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -17,6 +17,7 @@ add_library(videod3d | ||
| PerfQuery.h | ||
| Render.cpp | ||
| Render.h | ||
| SwapChain.cpp | ||
| VertexManager.cpp | ||
| VertexManager.h | ||
| VideoBackend.h | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -11,5 +11,4 @@ target_link_libraries(videod3dcommon | ||
| PUBLIC | ||
| common | ||
| videocommon | ||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| 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") |