diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-20 20:57:00 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-20 20:57:00 -0400 |
commit | 43eb982a80c45fe26f1cbbc23285c4d8a2cc64b4 (patch) | |
tree | 66ee75d6bcb234f6febf52bd07ce80a9b6a6ec90 /CMakeLists.txt | |
parent | 7fd747b7dfa11c1061d03467d50ff49c9d1f6b34 (diff) |
Create include/ directory and move main.h structs there
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 27dd07f9..ef9276a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,4 +8,4 @@ enable_language(ASM) file(GLOB_RECURSE SOURCES RELATIVE ${CMAKE_SOURCE_DIR} "*.c") add_executable(PokeDiamond ${SOURCES}) -target_include_directories(PokeDiamond PRIVATE nitro) +target_include_directories(PokeDiamond PRIVATE include) |