diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-02-08 17:30:17 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-02-08 17:30:17 -0500 |
commit | 3a70fa1ae461cab27443ac53faec35db1d6b89d3 (patch) | |
tree | f36bad99cf1b43042fe19fb5cc06198bf15ff486 | |
parent | d4a37f60dda18f1a48bc7e2dc1edd730e03e06c8 (diff) |
add stub clion config for code inspection
-rw-r--r-- | projects/cMakeLists.txt | 13 |
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 |