mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-29 01:35:41 -04: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()
|