moved python sources

This commit is contained in:
Devaev Maxim
2021-04-08 05:19:19 +03:00
parent b329dfed1f
commit 0eb0370bd3
10 changed files with 6 additions and 6 deletions

View File

@@ -1 +0,0 @@
../src/libs/frame.c

View File

@@ -1 +0,0 @@
../src/libs/frame.h

View File

@@ -1 +0,0 @@
../src/libs/memsinksh.h

View File

@@ -18,8 +18,8 @@ if __name__ == "__main__":
"ustreamer",
libraries=["rt", "m", "pthread"],
undef_macros=["NDEBUG"],
sources=[name for name in os.listdir(".") if name.endswith(".c")],
depends=[name for name in os.listdir(".") if name.endswith(".h")],
sources=["src/" + name for name in os.listdir("src") if name.endswith(".c")],
depends=["src/" + name for name in os.listdir("src") if name.endswith(".h")],
),
],
)

1
python/src/frame.c Symbolic link
View File

@@ -0,0 +1 @@
../../src/libs/frame.c

1
python/src/frame.h Symbolic link
View File

@@ -0,0 +1 @@
../../src/libs/frame.h

1
python/src/memsinksh.h Symbolic link
View File

@@ -0,0 +1 @@
../../src/libs/memsinksh.h

1
python/src/tools.h Symbolic link
View File

@@ -0,0 +1 @@
../../src/libs/tools.h

View File

@@ -1 +0,0 @@
../src/libs/tools.h