nesemu/cpu/CMakeLists.txt

10 lines
173 B
CMake

add_library(CPU
cpu.c
op.c
memory.c
cpu.h
decoding.c
decoding.h)
find_package(log.c)
target_link_libraries(CPU log.c::log.c)