summaryrefslogtreecommitdiff
path: root/projects/cMakeLists.txt
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-03-16 08:40:24 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2018-03-16 08:40:24 -0400
commit0e372d2fb6785ba47011b6ee0ad1b68ea05ae198 (patch)
tree72a7d12902002dc661cd543a270a11bda45a7645 /projects/cMakeLists.txt
parentb98c803e6d25785b3b268c2c26a87ac74a7e3a95 (diff)
parentd51855dfadf9e1357ef8e33e90b5156f8561405c (diff)
Merge branch 'master' into tomomichi_debug_menu
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