make quicky wrapper for cmake.

works like scons where using a subset of the targets name is enough.

  make_quicky.py py
...expands into
  make  bf_python bf_python_ext blender/fast

arguments like -j4 are passed on.
This commit is contained in:
2010-08-24 05:24:37 +00:00
parent 6464718083
commit 70e99a3476
2 changed files with 121 additions and 2 deletions

View File

@@ -1004,8 +1004,8 @@ static PyObject *Vector_mul(PyObject * v1, PyObject * v2)
/* swap so vec1 is always the vector */
/* note: it would seem from this code that the matrix multiplication below
* is non-communicative. however the matrix object will always handle the
* (matrix * vector) case.
* is communicative. however the matrix class will always handle the
* (matrix * vector) case so we can ignore it here.
* This is NOT so for Quaternions: TODO, check if communicative (vec * quat) is correct */
if (vec2) {
vec1= vec2;