jak-project/tools/CMakeLists.txt
Tyler Wilding 9e2b49abaa
Automatically watch PCSX2 savestate directory and analyze the EE Memory (#507)
* add elzip library (doesn't require zlib)

* Can analyze directly from a PCSX2 save-state now

* Add scaffolding to auto-watch for new save-states

* .gitattributes fix
2021-05-20 14:18:28 -04:00

14 lines
357 B
CMake

add_executable(dgo_unpacker
dgo_unpacker.cpp)
target_link_libraries(dgo_unpacker common)
add_executable(dgo_packer
dgo_packer.cpp)
target_link_libraries(dgo_packer common)
add_executable(memory_dump_tool
MemoryDumpTool/main.cpp)
target_link_libraries(memory_dump_tool common decomp elzip)
install(TARGETS dgo_unpacker dgo_packer)