8 lines
137 B
Python
8 lines
137 B
Python
|
from pymake import *
|
||
|
|
||
|
(
|
||
|
cmake("3.5")
|
||
|
.file("SRC",glob_recurse,"*.cpp")
|
||
|
.add_executable("test_base",var("SRC"))
|
||
|
.write()
|
||
|
)
|