mirror of https://github.com/PCSX2/pcsx2.git
13 lines
182 B
CMake
13 lines
182 B
CMake
|
add_executable(updater
|
||
|
Updater.cpp
|
||
|
Updater.h
|
||
|
)
|
||
|
|
||
|
target_link_libraries(updater PRIVATE common fmt::fmt lzma)
|
||
|
|
||
|
if(WIN32)
|
||
|
target_sources(updater PRIVATE
|
||
|
Win32Update.cpp
|
||
|
)
|
||
|
endif()
|