Skip to content
Snippets Groups Projects
Select Git revision
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • develop default protected
  • feature/composite-scheme
  • hyperplastic
  • feature/local-dt-fsi
  • feature/kinetic-schemes
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • feature/escobar-smoother
  • feature/hypoelasticity-clean
  • feature/hypoelasticity
  • feature/Navier-Stokes
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
32 results

CMakeLists.txt

Blame
    • Stéphane Del Pino's avatar
      420a6bae
      Add tests for EscapeString utilities · 420a6bae
      Stéphane Del Pino authored
      Actually fixed a few issues and make functions escapeString() and
      unescapeString() reciprocal.
      
      This later change leads to a grammar change, now literal do not
      store quotes: before `"foo"` was stored as the string "\"foo\"", now
      it is just stored as "foo".
      420a6bae
      History
      Add tests for EscapeString utilities
      Stéphane Del Pino authored
      Actually fixed a few issues and make functions escapeString() and
      unescapeString() reciprocal.
      
      This later change leads to a grammar change, now literal do not
      store quotes: before `"foo"` was stored as the string "\"foo\"", now
      it is just stored as "foo".
    CMakeLists.txt 3.93 KiB
    set(EXECUTABLE_OUTPUT_PATH ${PUGS_BINARY_DIR})
    
    include_directories(${PUGS_SOURCE_DIR}/src)
    include_directories(${PUGS_BINARY_DIR}/src)
    include_directories(${PUGS_SOURCE_DIR}/tests)
    
    add_executable (unit_tests
      test_main.cpp
      test_AffectationProcessor.cpp
      test_AffectationToStringProcessor.cpp
      test_AffectationToTupleProcessor.cpp
      test_Array.cpp
      test_ArraySubscriptProcessor.cpp
      test_ArrayUtils.cpp
      test_ASTBuilder.cpp
      test_ASTDotPrinter.cpp
      test_ASTModulesImporter.cpp
      test_ASTNode.cpp
      test_ASTNodeAffectationExpressionBuilder.cpp
      test_ASTNodeArraySubscriptExpressionBuilder.cpp
      test_ASTNodeBinaryOperatorExpressionBuilder.cpp
      test_ASTNodeBuiltinFunctionExpressionBuilder.cpp
      test_ASTNodeDataType.cpp
      test_ASTNodeDataTypeBuilder.cpp
      test_ASTNodeDataTypeChecker.cpp
      test_ASTNodeDataTypeFlattener.cpp
      test_ASTNodeDeclarationToAffectationConverter.cpp
      test_ASTNodeEmptyBlockCleaner.cpp
      test_ASTNodeExpressionBuilder.cpp
      test_ASTNodeFunctionEvaluationExpressionBuilder.cpp
      test_ASTNodeFunctionExpressionBuilder.cpp
      test_ASTNodeIncDecExpressionBuilder.cpp
      test_ASTNodeJumpPlacementChecker.cpp
      test_ASTNodeListAffectationExpressionBuilder.cpp
      test_ASTNodeListProcessor.cpp
      test_ASTNodeNaturalConversionChecker.cpp
      test_ASTNodeTypeCleaner.cpp
      test_ASTNodeUnaryOperatorExpressionBuilder.cpp
      test_ASTPrinter.cpp
      test_ASTSymbolTableBuilder.cpp
      test_ASTSymbolInitializationChecker.cpp
      test_BreakProcessor.cpp
      test_BinaryExpressionProcessor_arithmetic.cpp
      test_BinaryExpressionProcessor_comparison.cpp
      test_BinaryExpressionProcessor_equality.cpp
      test_BinaryExpressionProcessor_logic.cpp
      test_BiCGStab.cpp
      test_BuildInfo.cpp
      test_BuiltinFunctionEmbedder.cpp
      test_BuiltinFunctionEmbedderTable.cpp
      test_BuiltinFunctionProcessor.cpp
      test_CastArray.cpp
      test_ConsoleManager.cpp
      test_CG.cpp
      test_ContinueProcessor.cpp
      test_ConcatExpressionProcessor.cpp
      test_CRSGraph.cpp
      test_CRSMatrix.cpp
      test_DataVariant.cpp
      test_Demangle.cpp
      test_DoWhileProcessor.cpp
      test_EmbeddedData.cpp
      test_EscapedString.cpp
      test_ExecutionPolicy.cpp
      test_FakeProcessor.cpp
      test_ForProcessor.cpp
      test_FunctionArgumentConverter.cpp
      test_FunctionProcessor.cpp
      test_FunctionSymbolId.cpp
      test_FunctionTable.cpp