blob: ef9276a4f53a5cd64877a5a10b64e424058b72b6 (
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)
|