Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CaosDB Octave library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
caosdb
Software
CaosDB Octave library
Commits
9c84c574
Commit
9c84c574
authored
3 years ago
by
Daniel Hornung
Browse files
Options
Downloads
Patches
Plain Diff
DOC: More setup documentation. And smaller cmake version allowed.
parent
51215d12
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#11392
failed
3 years ago
Stage: setup
Stage: test
Stage: deploy
Changes
4
Pipelines
11
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
README_SETUP.md
+16
-4
16 additions, 4 deletions
README_SETUP.md
src/CMakeLists.txt
+1
-1
1 addition, 1 deletion
src/CMakeLists.txt
with
20 additions
and
6 deletions
.gitignore
+
2
−
0
View file @
9c84c574
# -*- mode:conf; -*-
# General
build
/
inst
/
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
9c84c574
...
...
@@ -18,7 +18,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
cmake_minimum_required
(
VERSION 3.1
5
)
cmake_minimum_required
(
VERSION 3.1
3
)
project
(
OctaveCaosDB
DESCRIPTION
"GNU/Octave wrapper for libcaosdb, the C++ client library of the CaosDB project."
...
...
This diff is collapsed.
Click to expand it.
README_SETUP.md
+
16
−
4
View file @
9c84c574
# Getting started with CaosDB for Octave #
## Install and Load
## Requirements ##
This package requires the following software:
From ocatave:
-
conan:
`pip install conan`
-
libcaosdb: See https://gitlab.indiscale.com/caosdb/src/caosdb-cpplib for further instructions.
-
For running this library, a valid libcaosdb configuration is needed, for example a
`.caosdb_client.json`
file in your home directory or current working directory. Please look at
[
`README_SETUP.md` in caosdb-cpplib
](
https://gitlab.indiscale.com/caosdb/src/caosdb-cpplib/-/blob/main/README_SETUP.md
)
for more information.
## Install and Load
*
`pkg install pkg;`
*
`pkg load caosdb;`
*
`make install`
*
Or alternatively:
*
`make dist/caosdb.tar.gz`
*
Then in octave:
*
`pkg install dist/caosdb.tar.gz`
*
`pkg load caosdb;`
## Run Unit Tests
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
1
−
1
View file @
9c84c574
...
...
@@ -23,4 +23,4 @@ set(OCTAVE_CAOSDB_SRC
)
# pass variable to parent scope
set
(
OCTAVE_CAOSDB_SRC
${
OCTAVE_CAOSDB_SRC
}
PARENT_SCOPE
)
set
(
OCTAVE_CAOSDB_SRC
${
OCTAVE_CAOSDB_SRC
}
PARENT_SCOPE
)
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