Skip to content
Snippets Groups Projects
Commit 3a2b60a6 authored by Dmitriy A. Gerasimov's avatar Dmitriy A. Gerasimov
Browse files

[*] added main() in satoshi-script-tpl.c

parent 8ded72c6
No related branches found
No related tags found
No related merge requests found
Pipeline #6209 passed with stage
in 12 seconds
......@@ -2,35 +2,18 @@ project(cellframe-sdk C)
cmake_minimum_required(VERSION 2.8)
set(CMAKE_C_STANDARD 11)
set(CELLFRAME_SDK_NATIVE_VERSION "2.7-2")
set(CELLFRAME_SDK_NATIVE_VERSION "2.7-3")
add_definitions ("-DCELLFRAME_SDK_VERSION=\"${CELLFRAME_SDK_NATIVE_VERSION}\"")
set(DAPSDK_MODULES "")
if (CELLFRAME_MODULES MATCHES "core")
if (BUILD_TESTS)
SET(DAPSDK_MODULES "")
SET(DAPSDK_MODULES "${DAPSDK_MODULES} core crypto")
endif()
if (CELLFRAME_MODULES MATCHES "network")
set(DAPSDK_MODULES "${DAPSDK_MODULES} network-core network-client network-server")
endif()
if (BUILD_CRYPTO_TESTS)
if ( NOT(DAPSDK_MODULES MATCHES "core"))
SET(DAPSDK_MODULES "${DAPSDK_MODULES} core")
endif()
if ( NOT(DAPSDK_MODULES MATCHES "crypto"))
SET(DAPSDK_MODULES "${DAPSDK_MODULES} crypto")
endif()
set(BUILD_TESTS ON)
endif()
if(BUILD_TESTS)
SET(DAPSDK_MODULES "${DAPSDK_MODULES} network-core network-client network-server")
include(cmake/OS_Detection.cmake)
add_subdirectory(dap-sdk)
endif()
add_subdirectory(dap-sdk)
add_subdirectory(3rdparty/monero_crypto)
add_subdirectory(3rdparty/cuttdb)
add_subdirectory(modules/)
......
int main (int argc, const char * argv[])
{
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment