Move CMakeList

This commit is contained in:
Jeffrey Pfau 2013-04-11 23:58:13 -07:00
parent 09455b50d3
commit b07e052698
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
cmake_minimum_required(VERSION 2.6)
project(GBAc)
file(GLOB SOURCES *.c)
set(CMAKE_C_FLAGS_DEBUG "-g -Wall -Wextra")
file(GLOB SOURCES src/*.c)
add_executable(gbac ${SOURCES})