From 839a88cd2b9a2f054323627c4e76cdcefc652c63 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 27 Apr 2013 19:51:08 +0300 Subject: [PATCH] Rename the library to mspmath and make linal a sublibrary --- .gitignore | 4 ++-- Build | 8 ++++---- source/{ => linal}/dummy.cpp | 0 source/{ => linal}/matrix.h | 0 source/{ => linal}/matrix4.h | 0 source/{ => linal}/squarematrix.h | 0 source/{ => linal}/vector.h | 0 source/{ => linal}/vector3.h | 0 8 files changed, 6 insertions(+), 6 deletions(-) rename source/{ => linal}/dummy.cpp (100%) rename source/{ => linal}/matrix.h (100%) rename source/{ => linal}/matrix4.h (100%) rename source/{ => linal}/squarematrix.h (100%) rename source/{ => linal}/vector.h (100%) rename source/{ => linal}/vector3.h (100%) diff --git a/.gitignore b/.gitignore index e00c88d..f0ea9e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ /.config -/libmsplinal.so -/msplinal.pc +/libmspmath.so +/mspmath.pc /temp diff --git a/Build b/Build index 51f75b9..517bb2d 100644 --- a/Build +++ b/Build @@ -1,12 +1,12 @@ -package "msplinal" +package "mspmath" { - library "msplinal" + library "mspmath" { - source "source"; + source "source/linal"; install true; install_map { - map "source" "include/msp/linal"; + map "source" "include/msp"; }; }; }; diff --git a/source/dummy.cpp b/source/linal/dummy.cpp similarity index 100% rename from source/dummy.cpp rename to source/linal/dummy.cpp diff --git a/source/matrix.h b/source/linal/matrix.h similarity index 100% rename from source/matrix.h rename to source/linal/matrix.h diff --git a/source/matrix4.h b/source/linal/matrix4.h similarity index 100% rename from source/matrix4.h rename to source/linal/matrix4.h diff --git a/source/squarematrix.h b/source/linal/squarematrix.h similarity index 100% rename from source/squarematrix.h rename to source/linal/squarematrix.h diff --git a/source/vector.h b/source/linal/vector.h similarity index 100% rename from source/vector.h rename to source/linal/vector.h diff --git a/source/vector3.h b/source/linal/vector3.h similarity index 100% rename from source/vector3.h rename to source/linal/vector3.h -- 2.43.0