mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
355 B
CMake
12 lines
355 B
CMake
add_executable(uninstaller
|
|
main.cpp
|
|
resource.h
|
|
uninstaller.manifest
|
|
uninstaller.rc
|
|
)
|
|
|
|
target_include_directories(uninstaller PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/..")
|
|
target_link_libraries(uninstaller PRIVATE common fmt)
|
|
target_link_libraries(uninstaller PRIVATE "Comctl32.lib")
|
|
set_target_properties(uninstaller PROPERTIES WIN32_EXECUTABLE TRUE)
|