mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-26 00:11:26 -05:00
10 lines
207 B
CMake
10 lines
207 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}) |