Skip to content
Snippets Groups Projects
Commit fc07a07c authored by Debolskiy Andrey's avatar Debolskiy Andrey :bicyclist_tone5:
Browse files

Merge branch 'Doxygen' into 'main'

Doxygen

See merge request inmcm60_pbl/inmcm60_sfx!6
parents 2bf13928 4d0e9c1d
No related branches found
No related tags found
No related merge requests found
option(BUILD_DOC "Build documentation" ON)
include(CMakePrintHelpers)
find_package(Doxygen)
if (DOXYGEN_FOUND)
set(DOXYGEN_IN ../doxygen/config) # doxygen config file
# option ALL allows to build the docs together with the code
add_custom_target( doc_doxygen ALL
COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_IN}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) # WORKING_DIRECTORY: Execute the command with the given current working directory. If it is a relative path it will be interpreted relative to the build tree directory corresponding to the current source directory.
else()
message("Doxygen need to be installed to generate the doxygen documentation")
endif (DOXYGEN_FOUND)
\ No newline at end of file
ifort -c inputdata.f90
ifort -c param.f90
ifort -c prmt.f90
ifort -c drag3.F
ifort -c DRAG.F
ifort -o drag.exe DRAG.o drag3.o inputdata.o param.o prmt.o
!> Build the restriction matrix for the aggregation
!> The distance between \f$(x_1,y_1)\f$ and \f$(x_2,y_2)\f$ is
!> method.
!> @param aggr information about the aggregates
!> @todo Handle special case
PROGRAM DRAG PROGRAM DRAG
USE INPUTDATA USE INPUTDATA
USE PARAM USE PARAM
......
mini README Оформление мат-формул: https://www.doxygen.nl/manual/formulas.html
\ No newline at end of file
#!/bin/bash
rm drag_ddt.exe *.o
gfortran -c inputdata.f90
gfortran -c param.f90
gfortran -c prmt.f90
gfortran -c drag3.f90
gfortran -c main_drag.f90
gfortran -o drag_ddt.exe main_drag.o drag3.o inputdata.o param.o
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment