mirror of
https://github.com/ZDoom/acc.git
synced 2025-03-13 03:42:17 +00:00
23 lines
219 B
Text
23 lines
219 B
Text
|
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
|
||
|
)
|