all repos — mgba @ 688af6cdeee935f5b2d2df30b47da0e7bdf9c6a0

mGBA Game Boy Advance Emulator

CMakeLists.txt (view raw)

1cmake_minimum_required(VERSION 2.6)
2project(GBAc)
3set(CMAKE_C_FLAGS_DEBUG "-g -Wall -Wextra")
4file(GLOB SOURCES src/*.c third-party/linenoise/linenoise.c)
5include_directories(${CMAKE_SOURCE_DIR}/third-party/linenoise)
6add_executable(gbac ${SOURCES})