nesemu/cpu/CMakeLists.txt

9 lines
149 B
CMake

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