pymake/tests/generate_base.py
2024-06-15 22:31:29 +08:00

8 lines
137 B
Python

from pymake import *
(
cmake("3.5")
.file("SRC",glob_recurse,"*.cpp")
.add_executable("test_base",var("SRC"))
.write()
)