File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ def requirements(self):
24
24
self .requires ("libcurl/8.15.0" )
25
25
self .requires ("glew/2.2.0" )
26
26
self .requires ("jsoncpp/1.9.6" )
27
+ if self .settings .os == "Windows" :
28
+ self .requires ("openssl/3.3.2" )
27
29
if self .settings .os == "Linux" :
28
30
self .requires ("fltk/1.4.1" )
29
31
self .requires ("egl/system" )
@@ -35,6 +37,9 @@ def configure(self):
35
37
self .options ["glew" ].shared = False
36
38
self .options ["glew" ].with_glu = "system"
37
39
40
+ if self .settings .os == "Windows" :
41
+ self .options ["libcurl" ].with_ssl = "openssl"
42
+
38
43
def layout (self ):
39
44
cmake_layout (self )
40
45
Original file line number Diff line number Diff line change 41
41
// This numeric is used by the gateway to understand if our WED is up-to-date.
42
42
// Format 1 digit major + 2 digit middle + 1 digit minor version + last digit
43
43
// last digit is 0 for all beta versions or matches release version
44
- #define WED_VERSION_NUMERIC 20610
44
+ #define WED_VERSION_NUMERIC 20700
45
45
46
46
#endif /* WED_Version_H */
You can’t perform that action at this time.
0 commit comments