From a00a92a0ee3cd6143d87c846d6bcffff75459205 Mon Sep 17 00:00:00 2001 From: Karl-Wilfried Zimmer Date: Sun, 7 Jul 2024 20:44:56 +0200 Subject: [PATCH] added vector stuff to app --- apps/CMakeLists.txt | 2 +- apps/main.cpp | 18 ++++++++++++++++++ src/CMakeLists.txt | 2 -- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt index e277ec2..88ab4fe 100644 --- a/apps/CMakeLists.txt +++ b/apps/CMakeLists.txt @@ -1,3 +1,3 @@ add_executable(app main.cpp) -target_link_libraries(app PRIVATE block vector) +target_link_libraries(app PRIVATE block) diff --git a/apps/main.cpp b/apps/main.cpp index 90111fa..8882efd 100644 --- a/apps/main.cpp +++ b/apps/main.cpp @@ -4,5 +4,23 @@ int main(int argc, char **argv) { std::cout << "Hello, world!" << std::endl; Volumes::Block block; + Vector::Vector3 vec(1,2,3); + Vector::Vector3 vec2(2,1,3); + std::cout<