From 7aa03092c370c7b5450338f4717d38d2b3e2e4ac Mon Sep 17 00:00:00 2001 From: "Dmitriy A. Gerasimov" <dmitriy.gerasimov@demlabs.net> Date: Sun, 9 Sep 2018 14:47:00 +0700 Subject: [PATCH] [+] Build file --- CMakeLists.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ab14358 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,31 @@ +cmake_minimum_required(VERSION 2.8) +project (dap_chain_crypto) + +set(DAP_CHAIN_CRYPTO_SRCS + dap_hash.c + dap_hash_fusion.c + dap_hash_keccak.c + dap_hash_slow.c + ) + +set(DAP_CHAIN_CRYPTO_HEADERS + dap_hash.h + dap_hash_fusion.h + dap_hash_keccak.h + dap_hash_slow.h + ) + +add_subdirectory(monero_crypto) + +include_directories("${monero_crypto_INCLUDE_DIRS}") +add_definitions ("${monero_crypto_DEFINITIONS}") + + +add_library(${PROJECT_NAME} STATIC ${DAP_CHAIN_CRYPTO_SRCS} ${DAP_CHAIN_CRYPTO_HEADERS}) + + +target_link_libraries(dap_chain_crypto dap_core dap_crypto) + +set(${PROJECT_NAME}_DEFINITIONS CACHE INTERNAL "${PROJECT_NAME}: Definitions" FORCE) + +set(${PROJECT_NAME}_INCLUDE_DIRS ${PROJECT_SOURCE_DIR} CACHE INTERNAL "${PROJECT_NAME}: Include Directories" FORCE) -- GitLab