nesemu/cpu/CMakeLists.txt

10 lines
173 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
memory.c
2024-01-09 15:56:54 -05:00
cpu.h
decoding.c
decoding.h)
2023-11-26 12:11:49 -05:00
find_package(log.c)
target_link_libraries(CPU log.c::log.c)