From: Roy S. <roy...@ic...> - 2017-11-08 13:56:21
|
On Tue, 7 Nov 2017, Zack Vitoh wrote: > I want to develop a nonstandard quadrature rule and use it as in > introduction_ex3. Is there a way to do this simply, Yes: after you add your new files (and the corresponding entry in quadrature_build.C), run a few scripts (as detailed in https://github.com/libMesh/libmesh/wiki/Adding-or-removing-source-files on the wiki) to put them into the build systems, and run "make" again. > without rebuilding everything? Probably not, I fear. Putting new files into the build system will cause configure to re-run, configure will probably generate a new libmesh_config.h, pretty much every object file depends on libmesh_config.h, and so the entire tree will be rebuilt. --- Roy |