pymake/tests/generate_base.py

8 lines
137 B
Python
Raw Normal View History

2024-06-15 14:31:29 +00:00
from pymake import *
(
cmake("3.5")
.file("SRC",glob_recurse,"*.cpp")
.add_executable("test_base",var("SRC"))
.write()
)