mirror of
https://github.com/pret/pokediamond.git
synced 2026-09-26 13:33:09 -04: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)
|