einfaches build system

This commit is contained in:
2020-10-28 19:47:10 +01:00
parent a1d2736e24
commit 0acedf8a82
5 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,2 @@
file(GLOB J1SOURCES "src/*.c")
add_executable(j1 ${J1SOURCES} ${ACLSOURCES})

View File

@ -0,0 +1,4 @@
#include <stdio.h>
int main() {
printf("hey");
}