diff options
author | iDunk5400 <iDunk5400@users.noreply.github.com> | 2018-10-03 01:06:03 +0200 |
---|---|---|
committer | iDunk5400 <iDunk5400@users.noreply.github.com> | 2018-10-03 01:06:03 +0200 |
commit | 7f2ad1a768cd89c3e873c8d1750fe72f4ec47003 (patch) | |
tree | 37d99ea9b66a374805e1832e21ce5efe479df71a /tests/functional_tests | |
parent | Merge pull request #4485 (diff) | |
download | monero-7f2ad1a768cd89c3e873c8d1750fe72f4ec47003.tar.xz |
functional_tests: fix linking on Windows
Diffstat (limited to 'tests/functional_tests')
-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 |