gb6/system6/CMakeLists.txt

16 lines
266 B
CMake
Raw Normal View History

2019-10-22 04:49:08 +00:00
project(GameBoyEmulator)
cmake_minimum_required(VERSION 3.9)
include_directories(../src)
add_application(Emulator
../src/bootstrap.c
../src/cpu.c
../src/dmg.c
../src/instructions.c
../src/lcd.c
../src/rom.c
emulator.c
resources.r
)