This commit is contained in:
Karl-Wilfried Zimmer 2023-12-31 16:08:21 +01:00
parent b2b09c60d8
commit 28006c38e5
3 changed files with 21 additions and 1 deletions

14
include/testclass.h Normal file
View File

@ -0,0 +1,14 @@
//
// Created by nb on 31.12.23.
//
#ifndef GEOMETRY_TESTCLASS_H
#define GEOMETRY_TESTCLASS_H
class testclass {
};
#endif //GEOMETRY_TESTCLASS_H

View File

@ -1,6 +1,7 @@
set(HEADER_LIST "${Geometry_SOURCE_DIR}/include/Geometry/dummy.h") set(HEADER_LIST "${Geometry_SOURCE_DIR}/include/Geometry/dummy.h")
add_library(Geometry Dummy.cpp ${HEADER_LIST}) add_library(Geometry Dummy.cpp ${HEADER_LIST}
testclass.cpp)
target_include_directories(Geometry PUBLIC "${PROJECT_SOURCE_DIR}/include" "${PROJECT_SOURCE_DIR}/Geometry") target_include_directories(Geometry PUBLIC "${PROJECT_SOURCE_DIR}/include" "${PROJECT_SOURCE_DIR}/Geometry")

5
src/testclass.cpp Normal file
View File

@ -0,0 +1,5 @@
//
// Created by nb on 31.12.23.
//
#include "testclass.h"