update
This commit is contained in:
parent
7772ef6346
commit
d4ad54915b
1
.gitignore
vendored
1
.gitignore
vendored
@ -11,3 +11,4 @@ __pycache__/
|
|||||||
/main.cxx
|
/main.cxx
|
||||||
|
|
||||||
/build
|
/build
|
||||||
|
/poetry.lock
|
@ -1,3 +1,3 @@
|
|||||||
from .lib.values import *
|
from .values import *
|
||||||
from .lib.cmake import *
|
from .cmake import *
|
||||||
from .lib.tools import *
|
from .tools import *
|
@ -1,9 +1 @@
|
|||||||
from . import *
|
print("Hello from pymake")
|
||||||
|
|
||||||
(
|
|
||||||
cmake("3.5")
|
|
||||||
.project("test")
|
|
||||||
.file("SRC",glob_recurse,"*.cxx")
|
|
||||||
.add_executable(var(project_name),var("SRC"))
|
|
||||||
.write()
|
|
||||||
)
|
|
@ -1,6 +1,5 @@
|
|||||||
from .tools import *
|
from .tools import *
|
||||||
from .values import *
|
from .values import *
|
||||||
|
|
||||||
class cmake:
|
class cmake:
|
||||||
__write_stack:"list[str]" = []
|
__write_stack:"list[str]" = []
|
||||||
__file_name = ""
|
__file_name = ""
|
Loading…
Reference in New Issue
Block a user