Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-chain-net-python
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-chain-net-python
Commits
fd32694f
Commit
fd32694f
authored
5 years ago
by
alexey.stratulat
Browse files
Options
Downloads
Patches
Plain Diff
[*] Fix. Added checking to if connected submodules in the part cmake file.
parent
9bafd9f5
No related branches found
No related tags found
1 merge request
!1
Features 2565 - Created the basis for wrapping dap_chain_net
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+159
-41
159 additions, 41 deletions
CMakeLists.txt
with
159 additions
and
41 deletions
CMakeLists.txt
+
159
−
41
View file @
fd32694f
...
...
@@ -4,53 +4,171 @@ cmake_minimum_required(VERSION 2.8)
set
(
CMAKE_VERBOSE_MAKEFILE ON
)
set
(
CMAKE_COLOR_MAKEFILE ON
)
set
(
CMAKE_C_STANDARD 11
)
set
(
SUBMODULES_NO_BUILD ON
)
add_definitions
(
"-fpic"
)
#if(NOT (${SUBMODULES_NO_BUILD} MATCHES ON))
# if (NOT (TARGET dap_core))
add_subdirectory
(
libdap
)
# target_compile_options(
# dap_core PRIVATE
# "-fpic"
# )
# endif()
# if (NOT (TARGET dap_crypto))
# add_subdirectory(libdap-crypto)
# target_compile_options(
# dap_crypto PRIVATE
# "-fpic"
# )
# endif()
#endif()
#add_definitions("-DDAP_APP_NAME=\"TestPRJ\" -DSYSTEM_CONFIGS_DIR=\"${CMAKE_CURRENT_BINARY_DIR}\"")
add_definitions
(
"-DNODE_NETNAME=
\"
cellframe
\"
"
)
if
(
UNIX
)
add_definitions
(
"-DDAP_OS_UNIX"
)
endif
()
add_subdirectory
(
libdap-crypto
)
add_subdirectory
(
libdap-chain
)
add_subdirectory
(
libdap-chain-crypto
)
add_subdirectory
(
libdap-chain-mempool
)
add_subdirectory
(
libdap-chain-net
)
add_subdirectory
(
libdap-server-core
)
add_subdirectory
(
libdap-chain-global-db
)
add_subdirectory
(
libdap-client
)
add_subdirectory
(
libdap-server
)
add_subdirectory
(
libdap-stream
)
add_subdirectory
(
libdap-stream-ch
)
add_subdirectory
(
libdap-server-udp
)
add_subdirectory
(
libdap-stream-ch-chain-net
)
add_subdirectory
(
libdap-stream-ch-chain
)
add_subdirectory
(
libdap-chain-wallet
)
add_subdirectory
(
libdap-chain-net-srv
)
add_subdirectory
(
libdap-chain-net-srv-vpn
)
add_subdirectory
(
libdap-chain-gdb
)
add_subdirectory
(
libdap-chain-python
)
add_subdirectory
(
libdap-crypto-python
)
add_subdirectory
(
libdap-python
)
add_subdirectory
(
libdap-client-python
)
if
(
NOT
(
${
SUBMODULES_NO_BUILD
}
MATCHES ON
))
set
(
SUBMODULES_NO_BUILD ON
)
if
(
NOT
(
TARGET dap_core
))
add_subdirectory
(
libdap
)
target_compile_options
(
dap_core PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_crypto
))
add_subdirectory
(
libdap-crypto
)
target_compile_options
(
dap_crypto PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain
))
add_subdirectory
(
libdap-chain
)
target_compile_options
(
dap_chain PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_crypto
))
add_subdirectory
(
libdap-chain-crypto
)
target_compile_options
(
dap_chain_crypto PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_mempool
))
add_subdirectory
(
libdap-chain-mempool
)
target_compile_options
(
dap_chain_mempool PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_net
))
add_subdirectory
(
libdap-chain-net
)
target_compile_options
(
dap_chain_net PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_server_core
))
add_subdirectory
(
libdap-server-core
)
target_compile_options
(
dap_server_core PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_global_db
))
add_subdirectory
(
libdap-chain-global-db
)
target_compile_options
(
dap_chain_global_db PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_client
))
add_subdirectory
(
libdap-client
)
target_compile_options
(
dap_client PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET libdap-server
))
add_subdirectory
(
libdap-server
)
# target_compile_options(
# libdap-server PRIVATE
# "-fpic"
# )
endif
()
if
(
NOT
(
TARGET dap_stream
))
add_subdirectory
(
libdap-stream
)
target_compile_options
(
dap_stream PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_stream_ch
))
add_subdirectory
(
libdap-stream-ch
)
target_compile_options
(
dap_stream_ch PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_stream_ch_chain
))
add_subdirectory
(
libdap-stream-ch-chain
)
target_compile_options
(
dap_stream_ch_chain PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_stream_ch_chain_net
))
add_subdirectory
(
libdap-stream-ch-chain-net
)
target_compile_options
(
dap_stream_ch_chain_net PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_udp_server
))
add_subdirectory
(
libdap-server-udp
)
target_compile_options
(
dap_udp_server PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_net_srv
))
add_subdirectory
(
libdap-chain-net-srv
)
target_compile_options
(
dap_chain_net_srv PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_wallet
))
add_subdirectory
(
libdap-chain-wallet
)
target_compile_options
(
dap_chain_wallet PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_gdb
))
add_subdirectory
(
libdap-chain-gdb
)
target_compile_options
(
dap_chain_gdb PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_python_module
))
add_subdirectory
(
libdap-python
)
target_compile_options
(
dap_python_module PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_crypto_python_module
))
add_subdirectory
(
libdap-crypto-python
)
target_compile_options
(
dap_crypto_python_module PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_chain_net_srv_vpn
))
add_subdirectory
(
libdap-chain-net-srv-vpn
)
target_compile_options
(
dap_chain_net_srv_vpn PRIVATE
"-fpic"
)
endif
()
if
(
NOT
(
TARGET dap_client_python_module
))
add_subdirectory
(
libdap-client-python
)
target_compile_options
(
dap_client_python_module PRIVATE
"-fpic"
)
endif
()
endif
()
#add_definitions("-DDAP_APP_NAME=\"TestPRJ\" -DSYSTEM_CONFIGS_DIR=\"${CMAKE_CURRENT_BINARY_DIR}\"")
file
(
GLOB CHAIN_NET_PYTHON_SRCS src/*.c
)
file
(
GLOB CHAIN_NET_PYTHON_HEADERS include/*.h
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment