mirror of
https://github.com/mlaux/gb6.git
synced 2025-01-23 18:31:22 +00:00
15 lines
244 B
CMake
15 lines
244 B
CMake
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
|
|
)
|