From 03318af23bac90aea70a6ae709df6e109da7676c Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Tue, 11 Jan 2022 09:54:11 +0100 Subject: [PATCH] Added CMakeLists.txt --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0a2e6ce --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.13) # CMake version check +project(VectorAlgebra) # Create project "simple_example" +set(CMAKE_CXX_STANDARD 14) # Enable c++14 standard + +add_library(VectorAlgebra STATIC Vector3.cpp Quaternion.cpp) \ No newline at end of file