Duckstation/src/updater/CMakeLists.txt

13 lines
186 B
CMake
Raw Normal View History

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