DolphinTool: CLI utility interface and disc image tools

This commit is contained in:
ssdsnake
2021-12-03 15:40:19 -06:00
parent 1e212d6212
commit 1aa8a4d46f
19 changed files with 968 additions and 26 deletions

View File

@ -0,0 +1,22 @@
add_executable(dolphin-tool
ToolHeadlessPlatform.cpp
Command.h
ConvertCommand.cpp
ConvertCommand.h
VerifyCommand.cpp
VerifyCommand.h
ToolMain.cpp
)
set_target_properties(dolphin-tool PROPERTIES OUTPUT_NAME dolphin-tool)
target_link_libraries(dolphin-tool
PRIVATE
core
discio
videocommon
cpp-optparse
)
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-tool)
install(TARGETS dolphin-tool RUNTIME DESTINATION ${bindir})