mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-12-04 19:45:41 +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()
|