2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-14 12:52:17 +00:00
Files
mysql/tools/user-config.jam
Ruben Perez 86e0eacd6a SSL/TLS and row reading rework (v0.2.0)
* SSL/TLS rework
* Unified connection object
* New prepared_statement::execute interface
* New resultset::read_one mechanic
* Unified row object
* null_t type
* Travis to GitHub actions migration
* Integration test rework
2022-03-21 16:09:48 +01:00

33 lines
1.2 KiB
Plaintext

#
# Copyright (c) 2019-2022 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
import os ;
local OPENSSL_ROOT = [ os.environ OPENSSL_ROOT ] ;
lib crypto ;
lib crypto : : <target-os>windows <address-model>32 <variant>debug <name>libcrypto32MDd ;
lib crypto : : <target-os>windows <address-model>32 <variant>release <name>libcrypto32MD ;
lib crypto : : <target-os>windows <address-model>64 <variant>debug <name>libcrypto64MDd ;
lib crypto : : <target-os>windows <address-model>64 <variant>release <name>libcrypto64MD ;
lib ssl ;
lib ssl : : <target-os>windows <address-model>32 <variant>debug <name>libssl32MDd ;
lib ssl : : <target-os>windows <address-model>32 <variant>release <name>libssl32MD ;
lib ssl : : <target-os>windows <address-model>64 <variant>debug <name>libssl64MDd ;
lib ssl : : <target-os>windows <address-model>64 <variant>release <name>libssl64MD ;
project user-config
: requirements
<include>$(OPENSSL_ROOT)/include
<library-path>$(OPENSSL_ROOT)/lib
<library-path>$(OPENSSL_ROOT)/lib/VC
;
using doxygen ;
using boostbook ;
using saxonhe ;