From df1efd05390fb91ead8f9ec38bae4bd11a6b0623 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6kelmann?= Date: Tue, 17 Dec 2024 18:44:37 +0100 Subject: [PATCH] fix bugs --- README.md | 15 +++++---------- tests/test_staticlib.cpp | 3 ++- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e828849..9b6abe4 100644 --- a/README.md +++ b/README.md @@ -149,17 +149,15 @@ int main() { Erstelle ein Build-Verzeichnis und führe CMake aus, um das Projekt zu bauen: ```bash -mkdir build -cd build -cmake .. -cmake --build . +cmake -B build +cmake --build build/ ``` ### 2. **Tests ausführen** Führe die Tests aus, um die Bibliothek zu überprüfen: ```bash -ctest +ctest --test-dir build/ ``` **Erwartete Ausgabe:** @@ -172,7 +170,7 @@ Test passed: sayHello() works correctly. Installiere die Bibliothek und die Header-Dateien in die Standardverzeichnisse: ```bash -sudo cmake --install . +sudo cmake --install build/ ``` - Die statische Bibliothek wird nach `/usr/local/lib/libStaticLib.a` installiert. @@ -187,10 +185,7 @@ Wechsle in das `example`-Verzeichnis und baue das Projekt: ```bash cd ../example -mkdir build -cd build -cmake .. -cmake --build . +cmake -B build && cmake --build build/ ``` ### 2. **Beispiel ausführen** diff --git a/tests/test_staticlib.cpp b/tests/test_staticlib.cpp index d8618a1..2340828 100644 --- a/tests/test_staticlib.cpp +++ b/tests/test_staticlib.cpp @@ -6,4 +6,5 @@ int main() { StaticLib lib; lib.sayHello(); std::cout << "Test passed: sayHello() works correctly." << std::endl; - return 0; \ No newline at end of file + return 0; +} \ No newline at end of file