From 8292d59fe3254bbaf62c2be39661dce3ff959758 Mon Sep 17 00:00:00 2001
From: Pascal Palenda <pascal.palenda@akustik.rwth-aachen.de>
Date: Wed, 15 Feb 2023 11:13:52 +0100
Subject: [PATCH] Imporve the example documentation

---
 README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 0031da1..6b8c495 100644
--- a/README.md
+++ b/README.md
@@ -49,10 +49,10 @@ ihta_add_library (
     NAMESPACE IHTA
     IDE_FOLDER ${PROJECT_NAME}
     LIBRARY_TYPE STATIC
-    TEST_INTERNALS
-    OUT_LIB LIB_TARGET
-    OUT_TEST TEST_TARGET
-    TEST_SOURCES test/test.cpp
+    OUT_LIB LIB_TARGET          # The name of the library target will be stored in `LIB_TARGET`. Useful for adding dependencies to the target. See below.
+    OUT_TEST TEST_TARGET        # The name of the unit test target will be stored in `TEST_TARGET`. Useful for adding dependencies to the target. See below.
+    TEST_SOURCES test/test.cpp  # This adds a unit test with the given source files.
+    TEST_INTERNALS              # With this option, the internals of the library can be unit tested as well.
 )
 
 # Add external library link to library
-- 
GitLab