mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 11:25:39 +00:00
13 lines
186 B
CMake
13 lines
186 B
CMake
add_executable(updater
|
|
updater.cpp
|
|
updater.h
|
|
)
|
|
|
|
target_link_libraries(updater PRIVATE common minizip zlib)
|
|
|
|
if(WIN32)
|
|
target_sources(updater PRIVATE
|
|
win32_main.cpp
|
|
)
|
|
endif()
|