Commit fd559012 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Implementing tnlProblemSolver.

parent cb9e6062
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -260,6 +260,7 @@ LINK_DIRECTORIES( ${LIBRARY_OUTPUT_PATH} )
add_subdirectory( src )
add_subdirectory( tests )
add_subdirectory( tools )
add_subdirectory( examples )

set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Template Numerical Library")
set(CPACK_PACKAGE_VENDOR "MMG")
+2 −0
Original line number Diff line number Diff line
add_subdirectory( make-project )
add_subdirectory( simple-solver )
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
INSTALL( FILES Makefile
               main.cpp
               program-name.cfg.desc
         DESTINATION share/tnl-${tnlVersion}/examples/make-project )
 No newline at end of file
+0 −1
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@
 *                                                                         *
 ***************************************************************************/

#include "two-phase-flow.h"
#include "program-name-conf.h"
#include <config/tnlConfigDescription.h>
#include <config/tnlParameterContainer.h>
+6 −0
Original line number Diff line number Diff line
INSTALL( FILES Makefile
               main.cpp
               simpleProblem.h
               simpleProblemTypesSetter.h
               simple-solver.cfg.desc
         DESTINATION share/tnl-${tnlVersion}/examples/simple-solver )
 No newline at end of file
Loading