blob: d7525783a3523bc48a890bb329ab3200eb9bad3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
cmake_minimum_required (VERSION 2.8.11)
project(PokeDiamond)
# TODO: Add commands
enable_language(ASM)
file(GLOB_RECURSE SOURCES RELATIVE ${CMAKE_SOURCE_DIR} "*.c")
add_executable(PokeDiamond ${SOURCES})
target_include_directories(PokeDiamond PRIVATE include include-mw arm9/lib/include)
|