mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-07 19:24:15 -05:00
12 lines
262 B
CMake
12 lines
262 B
CMake
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 nitro)
|