onion-wownero-blockchain-ex.../src/crypto/CMakeLists.txt

15 lines
249 B
CMake
Raw Normal View History

2021-03-27 11:41:31 +00:00
cmake_minimum_required(VERSION 3.0.2)
2019-10-05 00:16:07 +00:00
project(mycrypto)
set(SOURCE_FILES
rx-slow-hash.c)
# make static library called libmyxrm
# that we are going to link to
# in the root CMakeLists.txt file
add_library(mycrypto
STATIC
${SOURCE_FILES})