gb6/cli/CMakeLists.txt

15 lines
244 B
CMake
Raw Normal View History

project(GameBoyEmulator)
cmake_minimum_required(VERSION 3.9)
include_directories(../src)
add_executable(gb6
../src/bootstrap.c
../src/cpu.c
../src/dmg.c
../src/instructions.c
../src/lcd.c
../src/rom.c
emulator.c
)