This commit is contained in:
Karl-Wilfried Zimmer 2024-07-21 14:26:59 +02:00
parent fff10699e6
commit c97be3a28f
3 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@
#ifndef BLOCK_BLOCK_H
#define BLOCK_BLOCK_H
#include <Vector/vector3.h>
#include <LinAlg/vector3.h>
namespace Volumes{
class Block{

View File

@ -1,4 +1,5 @@
file(GLOB HEADER_LIST CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR}/include/Block/*")
file(GLOB HEADER_LIST CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR}/include/*")
file(GLOB SOURCE_LIST CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR}/src/*")
add_library(volsvecs block.cpp vector3.cpp ${HEADER_LIST})
add_library(VolumesVectors::volsvecs ALIAS volsvecs)

View File

@ -1,4 +1,4 @@
#include "Vector/vector3.h"
#include "LinAlg/vector3.h"
namespace LinAlg{
Vector3 Vector3::operator+(const LinAlg::Vector3 &v) const {