nesemu/cpu/CMakeLists.txt

9 lines
149 B
CMake
Raw Normal View History

2023-10-05 17:05:06 -04:00
add_library(CPU
cpu.c
op.c
2023-11-26 12:11:49 -05:00
ram.c
memory.c
cpu.h)
find_package(log.c)
target_link_libraries(CPU log.c::log.c)