not finnished solution for a1

This commit is contained in:
2020-11-26 16:13:01 +01:00
parent 2cb235dccc
commit 3e16cbaa81
3 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,4 @@
file(GLOB A1SOURCES "src/*.c")
file(GLOB ACLSOURCES "../lib/acl/src/*.c")
add_executable(a1 ${A1SOURCES} ${ACLSOURCES})
target_link_libraries(a1 PRIVATE m)