Vita3K/vita3k/patch/CMakeLists.txt
SpikeHD 0ebcc09292
patch: Add support for patch files (#3419)
* feat: poc patch loading

* fix: remove some logging, tweak filename requirements

* fix: clang format

* fix: loop -> memcpy

* fix: patching the wrong file

* fix: patch path in shared path on linux

* fix: newline

* fix: change to txt

* fix: explicit std

* fix: conditionally load patches

* fix: stroull -> stoull
2024-11-15 23:32:55 +01:00

9 lines
164 B
CMake

add_library(
patch
STATIC
include/patch/patch.h
src/patch.cpp
)
target_include_directories(patch PUBLIC include)
target_link_libraries(patch PRIVATE util)