- added CMake build system

This commit is contained in:
alexey.lysiuk 2020-07-22 13:37:30 +03:00 committed by Rachael Alexanderson
parent 6f358d2837
commit 24f1576244

22
CMakeLists.txt Normal file
View file

@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 2.4)
project(acc)
add_executable(acc
acc.c
error.c
misc.c
parse.c
pcode.c
strlist.c
symbol.c
token.c
common.h
error.h
misc.h
parse.h
pcode.h
strlist.h
symbol.h
token.h
)