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

Corrections in documentation and tutorials.

parent a1faf2bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -915,7 +915,7 @@ EXCLUDE_SYMBOLS += TNL::Assert::* # internal namespace
# command).

EXAMPLE_PATH           = @PROJECT_SOURCE_DIR@/src/Examples \
                         @CMAKE_CURRENT_BINARY_DIR@/src/Examples
                         @CMAKE_BINARY_DIR@/src/Examples

# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
+1 −1
Original line number Diff line number Diff line
@@ -52,4 +52,4 @@ add_custom_target( doc_doxygen_tutorial_arrays ALL
    COMMENT "Generating API documentation with Doxygen"
    VERBATIM )

INSTALL( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/tnl/html/Tutorials/Arrays )
 No newline at end of file
INSTALL( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/tnl/Tutorials/Arrays )
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -26,4 +26,4 @@ add_custom_target( doc_doxygen_tutorial_vectors ALL
    COMMENT "Generating API documentation with Doxygen"
    VERBATIM )

INSTALL( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/tnl/html/Tutorials/Vectors )
 No newline at end of file
INSTALL( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/tnl/Tutorials/Vectors )
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ int main( int argc, char* argv[] )
   /****
    * Perform test on GPU
    */
   std::cout << std::endl;
   std::cout << "Expressions on GPU ..." << std::endl;
   expressions< Devices::Cuda >();
}
+5 −4
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ int main( int argc, char* argv[] )
   /****
    * Perform test on GPU
    */
   std::cout << std::endl;
   std::cout << "Expressions on GPU ..." << std::endl;
   expressions< Devices::Cuda >();
}
Loading