summaryrefslogtreecommitdiff
path: root/projects/cMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'projects/cMakeLists.txt')
-rw-r--r--projects/cMakeLists.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/projects/cMakeLists.txt b/projects/cMakeLists.txt
new file mode 100644
index 000000000..ce1c9a426
--- /dev/null
+++ b/projects/cMakeLists.txt
@@ -0,0 +1,13 @@
+# DOES NOT BUILD! Used for code inspection.
+
+cmake_minimum_required(VERSION 3.6)
+set(CMAKE_C_STANDARD 90)
+project(pokeruby.gba)
+
+add_definitions(-DENGLISH -DREVISION=0 -DRUBY)
+
+file(GLOB_RECURSE C_SOURCES ../src/*.c ../src/*.h ../include/*.h)
+file(GLOB_RECURSE ASM_SOURCES ../asm/*.s ../asm/*.inc ../constants/*.inc ../data/*.s ../data/*.inc)
+include_directories(include ../tools/agbcc/include)
+
+add_executable(pokeruby.gba ${C_SOURCES} ${ASM_SOURCES}) \ No newline at end of file