now cmake takes snippets of code, completes them into compilable sources, builds them,

executes them and stores their output in files.
This commit is contained in:
Benoit Jacob
2007-12-21 09:30:32 +00:00
parent ee3410f79a
commit a316cd8a76
4 changed files with 31 additions and 21 deletions

View File

@@ -1,10 +1,3 @@
#include <Eigen/Core.h>
USING_EIGEN_DATA_TYPES
using namespace std;
int main(int, char**)
{
Matrix4d m = Matrix4d::identity();
m.dynBlock(2,0,2,2) = m.dynBlock(0,0,2,2);
cout << m << endl;
return 0;
}
Matrix4d m = Matrix4d::identity();
m.dynBlock(2,0,2,2) = m.dynBlock(0,0,2,2);
cout << m << endl;