mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-22 03:51:21 +00:00
- added CMake build system
This commit is contained in:
parent
6f358d2837
commit
24f1576244
1 changed files with 22 additions and 0 deletions
22
CMakeLists.txt
Normal file
22
CMakeLists.txt
Normal 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
|
||||||
|
)
|
Loading…
Reference in a new issue