2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

Attempt to solve b2 openssl problem in win

This commit is contained in:
Ruben Perez
2023-10-04 18:58:07 +02:00
parent b41e2704a1
commit 2cd487784b
2 changed files with 19 additions and 1 deletions

13
tools/user-config.jam Normal file
View File

@@ -0,0 +1,13 @@
# Used on CI. This is required on Windows to make b2 find openssl
import os ;
local OPENSSL_ROOT = [ os.environ OPENSSL_ROOT ] ;
project
: requirements
<include>$(OPENSSL_ROOT)/include
<variant>debug:<library-path>$(OPENSSL_ROOT)/lib
<target-os>windows<variant>debug:<library-path>$(OPENSSL_ROOT)/debug/lib
<variant>release:<library-path>$(OPENSSL_ROOT)/lib
;