From d1f8e14dd05877507441fc053ccc909c885bde94 Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Tue, 3 Sep 2024 11:15:22 +0200 Subject: [PATCH] Minor renamings (docs, comments) --- .gitignore | 2 +- .gitlab-ci.yml | 2 +- CMakeLists.txt | 2 +- README.md | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 425118e..0acf6ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # General build/ -include/libcaosdbConfig.h +include/liblinkaheadConfig.h cert/ # CMake diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7db556a..d731c9f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ # -# This file is a part of the CaosDB Project. +# This file is a part of the LinkAhead Project. # # Copyright (C) 2018 Research Group Biomedical Physics, # Max-Planck-Institute for Dynamics and Self-Organization Göttingen diff --git a/CMakeLists.txt b/CMakeLists.txt index 0ae868e..2e970c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required(VERSION 3.13) project(liblinkahead_inttests - DESCRIPTION "Integration tests for the C++ client libraries of the CaosDB project which run against the CaosDB server." + DESCRIPTION "Integration tests for the C++ client libraries of the LinkAhead project which run against the LinkAhead server." LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) diff --git a/README.md b/README.md index 62f212d..e1680f3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# caosdb-cppinttest +# linkahead-cppinttest -Integration tests for caosdb-cpplib and the caosdb-server +Integration tests for linkahead-cpplib and the linkahead-server # Dependencies @@ -14,7 +14,7 @@ Integration tests for caosdb-cpplib and the caosdb-server ## Prerequisites -Create a local conan package from the caosdb-cpplib repository +Create a local conan package from the linkahead-cpplib repository ## Build & Execution @@ -28,7 +28,7 @@ or manually via 2. `cmake --preset conan-<debug/release>` 3. `cd build <Debug/Release>` 4. `cmake --build .` -5. Provide client configuration at `~/.caosdb-client.json` or via any other method described in the docs. +5. Provide client configuration at `~/.linkahead-client.json` or via any other method described in the docs. 6. There are tests which need access to the server's certificate file. Define path to the pem file in the `CAOSDB_SERVER_CERT` environment variable. 7. Run with `ctest` in the build directory. -- GitLab