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

Revert "Merge branch 'Doxygen' into 'main'"

This reverts merge request !6
parent fc07a07c
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
USE INPUTDATA
USE PARAM
......
Оформление мат-формул: https://www.doxygen.nl/manual/formulas.html
\ No newline at end of file
mini README
#!/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.
drag3.F 0 → 100644
This diff is collapsed.
drag3.f90 0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
makefile 0 → 100644
This diff is collapsed.
This diff is collapsed.
prmt.f90 0 → 100644
This diff is collapsed.
prmt.mod 0 → 100644
File added
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