Select Git revision
CMakeLists.txt
-
Stéphane Del Pino authored
This is a special module that is *always* imported For this first version of the module we have three functions: getAvailableModules() -> string which returns the list of available pugs modules getPugsVersion() -> string getPugsBuildInfo() -> string which are moved from the 'utils' module There is no need to use `import core` in the preamble of a pugs script file.
Stéphane Del Pino authoredThis is a special module that is *always* imported For this first version of the module we have three functions: getAvailableModules() -> string which returns the list of available pugs modules getPugsVersion() -> string getPugsBuildInfo() -> string which are moved from the 'utils' module There is no need to use `import core` in the preamble of a pugs script file.
CMakeLists.txt 351 B
# ------------------- Source files --------------------
add_library(PugsLanguageModules
BuiltinModule.cpp
CoreModule.cpp
LinearSolverModule.cpp
MathModule.cpp
MeshModule.cpp
ModuleRepository.cpp
SchemeModule.cpp
UtilsModule.cpp
VTKModule.cpp
)
add_dependencies(PugsLanguageModules
PugsLanguageAlgorithms
PugsUtils
PugsMesh)