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<