diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-10-05 23:12:26 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-10-05 23:12:26 +0200 |
commit | 1e0ccf53bbc70b82ed34801d4e48bc39c913f71a (patch) | |
tree | b06611f036f82852e596ebfb37a2ed5d9c571167 | |
parent | Merge pull request #4487 (diff) | |
parent | functional_tests: fix linking on Windows (diff) | |
download | monero-1e0ccf53bbc70b82ed34801d4e48bc39c913f71a.tar.xz |
Merge pull request #4492
7f2ad1a7 functional_tests: fix linking on Windows (iDunk5400)
-rw-r--r-- | tests/functional_tests/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/functional_tests/CMakeLists.txt b/tests/functional_tests/CMakeLists.txt index 7a2a7fbd1..4b21b945c 100644 --- a/tests/functional_tests/CMakeLists.txt +++ b/tests/functional_tests/CMakeLists.txt @@ -26,6 +26,10 @@ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +if(WIN32) + set(EXTRA_LIBRARIES "${EXTRA_LIBRARIES};bcrypt") +endif() + set(functional_tests_sources main.cpp transactions_flow_test.cpp |