cherrytree

This commit is contained in:
4fury-c3440d8
2022-09-24 12:06:25 +03:00
parent 16859aeeb5
commit e45f0d9c95
4 changed files with 28 additions and 10 deletions
+7 -3
View File
@@ -7,14 +7,18 @@
from pisi.actionsapi import shelltools, cmaketools, get
j = ''.join([
' -B_build',
' -DAUTO_RUN_TESTING=OFF',
' -DBUILD_GMOCK=OFF',
' -DBUILD_TESTING=OFF',
' -DINSTALL_GTEST=OFF',
' -DCMAKE_BUILD_TYPE=None '
' -DCMAKE_BUILD_TYPE=None',
' -L '
])
def setup():
shelltools.move("src/ct/icons.gresource.cc.tmp", "src/ct/icons.gresource.cc")
cmaketools.configure("-B_build %s -LA" % j)
# shelltools.move("src/ct/icons.gresource.cc.tmp", "src/ct/icons.gresource.cc")
cmaketools.configure(j)
def build():
shelltools.cd("_build")