mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-12-14 02:14:26 -05:00
64b97d42b7
Assertion failed: ((fe_add(y, w, x), !fe_isnonzero(y))), function ge_fromfe_frombytes_vartime, file depend/hash/crypto-ops.c, line 2656.
15 lines
479 B
CMake
15 lines
479 B
CMake
cmake_minimum_required(VERSION 3.19)
|
|
project(xmr_btc_swap_comit C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
include_directories(monero-adaptor/depend/hash)
|
|
|
|
add_library(xmr_btc_swap_comit
|
|
monero-adaptor/depend/hash/hash.c
|
|
monero-adaptor/depend/hash/include/hash.h
|
|
monero-adaptor/depend/hash/include/int-util.h
|
|
monero-adaptor/depend/hash/crypto-ops.c
|
|
monero-adaptor/depend/hash/include/crypto-ops.h
|
|
monero-adaptor/depend/hash/include/warnings.h)
|