12345678910111213141516171819202122 |
- cmake_minimum_required(VERSION 3.14)
- project(shell C)
- set(CMAKE_C_STANDARD 11)
- include_directories(.)
- file(STRINGS .git/refs/heads/master BuildRef)
- add_compile_definitions(BUILD_REF="${BuildRef}")
- add_executable(shell
- esh_deinit.c
- esh_deinit.h
- esh_init.c
- esh_init.h
- esh_main_loop.c
- esh_main_loop.h
- esh_misc.c
- esh_misc.h
- esh_types.h
- main.c
- )
|