File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
- import shutil
3
2
4
3
from conan import ConanFile
5
4
from conan .tools .env import VirtualBuildEnv
@@ -37,13 +36,11 @@ def _settings_build(self):
37
36
def configure (self ):
38
37
self .settings .rm_safe ("compiler.cppstd" )
39
38
self .settings .rm_safe ("compiler.libcxx" )
40
- if self .options .get_safe ("with_gtk" ):
41
- self .options ["gtk" ].version = "3"
42
39
self .options ["pango" ].with_cairo = True
43
40
44
41
# https://gitlab.freedesktop.org/libdecor/libdecor/-/issues/66
45
42
if self .options .get_safe ("wayland" ):
46
- self .options ["shared " ].version = True
43
+ self .options ["wayland " ].shared = True
47
44
48
45
def layout (self ):
49
46
basic_layout (self , src_folder = "src" )
@@ -56,7 +53,7 @@ def requirements(self):
56
53
self .requires ("gtk/system" )
57
54
self .requires ("pango/1.51.0" )
58
55
self .requires ("wayland/1.22.0" )
59
- self .requires ("wayland-protocols/1.32 " )
56
+ self .requires ("wayland-protocols/1.33 " )
60
57
61
58
def validate (self ):
62
59
if self .settings .os != "Linux" :
You can’t perform that action at this time.
0 commit comments