Skip to content
Snippets Groups Projects
Commit 3496a9ba authored by Evgeniy's avatar Evgeniy
Browse files

[+] Cherry-pick from feature-3848, .gitignore and sdk stand-alone build

parent c2a8188a
No related branches found
No related tags found
10 merge requests!439feature 4930,!437feature 4930,!435Feature 4930,!434Feature 5344,!433Feature 5344,!432Feature 5220,!431Feature 5220,!430Feature 5220,!428bugs-5311,!412feature-2912
Pipeline #10152 passed with stage
in 4 seconds
# Prerequisites
build/*
cmake-build-*/
build_stretch/*
test/build
*.txt.user
......@@ -71,4 +72,5 @@ cmake_install.cmake
.idea/
# OS files
.DS_Store
\ No newline at end of file
.DS_Store
......@@ -23,6 +23,22 @@ if(NOT DEFINED ${CELLFRAME_MODULES})
endif()
set(DAPSDK_MODULES "")
if(NOT DEFINED ${CELLFRAME_MODULES})
include (cmake/OS_Detection.cmake)
if (WIN32)
set(CELLFRAME_MODULES "core chains mining network srv cs-dag-poa cs-block-poa cs-dag-pos cs-block-pos cs-none srv-app srv-app-db srv-datum srv-stake srv-xchange")
elseif(BSD)
set(CELLFRAME_MODULES "core chains mining network srv cs-dag-poa cs-block-poa cs-dag-pos cs-block-pos cs-none srv-app srv-app-db srv-datum srv-stake srv-xchange")
elseif(DARWIN)
set(CELLFRAME_MODULES "core chains mining network srv cs-dag-poa cs-block-poa cs-dag-pos cs-block-pos cs-none srv-app srv-app-db srv-datum srv-stake srv-xchange")
elseif(ANDROID)
set(CELLFRAME_MODULES "core chains mining network srv cs-dag-poa cs-block-poa cs-dag-pos cs-block-pos cs-none srv-app srv-app-db srv-datum srv-stake srv-xchange")
elseif(LINUX)
set(CELLFRAME_MODULES "core chains mining network srv cs-dag-poa cs-block-poa cs-dag-pos cs-block-pos cs-none srv-app srv-app-db srv-datum srv-stake srv-xchange modules-dynamic srv-vpn")
endif()
endif()
message("Cellframe modules: ${CELLFRAME_MODULES}")
if (CELLFRAME_MODULES MATCHES "modules-dynamic")
......
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