File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : CI
2-
31on : [push]
42
53jobs :
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ int main(int argc, char *argv[])
295295
296296 httpSettings.verbose = options[" curl-verbose" ].as <bool >();
297297 httpSettings.ignore_ssl_checks = options[" ignore-ssl-checks" ].as <bool >();
298+ primitives::http::setupSafeTls (false , false , get_root_directory () / " roots.pem" );
298299
299300 // always first
300301 if (!r || options ().count (" help" ))
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ void build(Solution &s)
77 p += Git (" https://github.com/cppan/cppan" , " " , " v1" );
88
99 auto &common = p.addTarget <StaticLibraryTarget>(" common" );
10- common. CPPVersion = CPPLanguageStandard::CPP17 ;
10+ common += cpp17 ;
1111 common +=
1212 " src/common/.*" _rr,
1313 " src/printers/.*" _rr,
@@ -69,7 +69,7 @@ void build(Solution &s)
6969 fc2->addOutput (common.BinaryDir / " comments/lexer.h" );
7070
7171 auto &client = p.addTarget <ExecutableTarget>(" client" );
72- client. CPPVersion = CPPLanguageStandard::CPP17 ;
72+ client += cpp17 ;
7373
7474 // for rc.exe
7575 client += " VERSION_MAJOR=0" _d;
You can’t perform that action at this time.
0 commit comments