nesemu/CMakeLists.txt

15 lines
364 B
CMake
Raw Normal View History

2023-10-05 17:05:06 -04:00
cmake_minimum_required(VERSION 3.10)
project(NESEmulator VERSION 0.1)
add_subdirectory(cpu)
list(APPEND EXTRA_INCLUDES "${PROJECT_SOURCE_DIR}/cpu")
add_executable(NESEmulator main.c)
find_package(log.c)
target_link_libraries(NESEmulator CPU log.c::log.c)
target_include_directories(NESEmulator PUBLIC
"${PROJECT_BINARY_DIR}"
${EXTRA_INCLUDES})