Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dapcash-node
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
Show more breadcrumbs
DapCash
dapcash-node
Commits
1cd07015
Commit
1cd07015
authored
4 years ago
by
dmitriy.gerasimov
Browse files
Options
Downloads
Patches
Plain Diff
[*] MacOS Catalina build errors fix
[*] Removed useless length variability for wallet struct
parent
55a1067b
No related branches found
No related tags found
No related merge requests found
Pipeline
#7302
passed with stages
in 6 minutes and 11 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+15
-4
15 additions, 4 deletions
CMakeLists.txt
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
with
16 additions
and
5 deletions
CMakeLists.txt
+
15
−
4
View file @
1cd07015
...
...
@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
SET
(
CPACK_PACKAGE_NAME
"
${
PROJECT_NAME
}
"
)
SET
(
CPACK_PACKAGE_VERSION_MAJOR 4
)
SET
(
CPACK_PACKAGE_VERSION_MINOR 3
)
SET
(
CPACK_PACKAGE_VERSION_PATCH 4
1
)
SET
(
CPACK_PACKAGE_VERSION_PATCH 4
2
)
#
# init CellFrame SDK
...
...
@@ -36,12 +36,18 @@ add_subdirectory(cellframe-sdk)
if
(
UNIX
)
if
(
LINUX
)
set
(
SUPPORT_PYTHON_PLUGINS ON
)
message
(
"[*] Linux package setup"
)
if
(
DARWIN
)
SET
(
CMAKE_INSTALL_PREFIX
"/usr/local/DapCashNode"
)
SET
(
CPACK_INSTALL_PREFIX
"/usr/local/DapCashNode"
)
SET
(
DESTDIR
"/usr/local/DapCashNode"
)
else
()
SET
(
CMAKE_INSTALL_PREFIX
"/opt/
${
PROJECT_NAME
}
"
)
SET
(
CPACK_INSTALL_PREFIX
"/opt/
${
PROJECT_NAME
}
"
)
SET
(
DESTDIR
"/opt/
${
PROJECT_NAME
}
"
)
endif
()
if
(
LINUX
)
set
(
SUPPORT_PYTHON_PLUGINS ON
)
message
(
"[*] Linux package setup"
)
SET
(
CPACK_GENERATOR
"DEB"
)
...
...
@@ -126,6 +132,11 @@ if(WIN32)
endif
()
if
(
BSD
)
set
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
-L /usr/local/lib "
)
set
(
CMAKE_LINKER_FLAGS
"
${
CMAKE_LINKER_FLAGS
}
-L /usr/local/lib"
)
endif
()
#add_executable(${PROJECT_NAME}-cli "sources/main_node_cli.c" "sources/main_node_cli_shell.c" "sources/main_node_cli_net.c" )
#add_executable(${PROJECT_NAME}-tool "sources/main_node_tool.c" )
...
...
This diff is collapsed.
Click to expand it.
cellframe-sdk
@
e0402a38
Compare
d5f9489f
...
e0402a38
Subproject commit
d5f9489f3fc11cbc78e0e1733a4527f63e9ce730
Subproject commit
e0402a38577e0755dd8604faf9622a06d0e052fe
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