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