Commit 3b7eaff1 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Refactoring: moved Arithmetics to the main TNL directory

The Experimental directory does not make much sense - there is a lot of
experimental or just unused code in TNL, e.g. Images or Operators.

- tests moved to the main UnitTests directory
- added missing inclusion of the Algorithms tests directory to
  CMakeLists.txt
parent ef5b6bed
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -4,10 +4,6 @@ install( DIRECTORY TNL/ DESTINATION ${TNL_TARGET_INCLUDE_DIRECTORY}
         MESSAGE_NEVER
         FILES_MATCHING PATTERN "*.h" PATTERN "*.hpp" )

# TODO: TNL/Experimental/ should be moved somewhere else, the TNL subdirectory
# should contain only header files
add_subdirectory( TNL/Experimental )

# Note that it is important to start building examples as soon as possible,
# because they take the longest time and other stuff can be pipelined before
# they are finished (at least with Ninja).
Loading