modify for coupling-cpp and hpp

This commit is contained in:
hamidrezanorouzi
2022-12-10 01:32:54 +03:30
parent 878c281d45
commit 8cc47b1c47
393 changed files with 1679 additions and 1679 deletions

View File

@ -1,6 +1,6 @@
set(source_files
checkPhasicFlow.C
checkPhasicFlow.cpp
)
set(link_lib phasicFlow Kokkos::kokkos)

View File

@ -18,9 +18,9 @@ Licence:
-----------------------------------------------------------------------------*/
#include "KokkosTypes.H"
#include "systemControl.H"
#include "commandLine.H"
#include "KokkosTypes.hpp"
#include "systemControl.hpp"
#include "commandLine.hpp"
using pFlow::output;
@ -37,7 +37,7 @@ int main( int argc, char* argv[] )
if(!cmds.parse(argc, argv)) return 0;
// this should be palced in each main
#include "initialize.H"
#include "initialize.hpp"
output<<endl;
Report(1)<< "You are using "<<yellowText(cmds.productNameCopyright())<<endReport;
@ -45,7 +45,7 @@ if(!cmds.parse(argc, argv)) return 0;
// this should be palced in each main
#include "finalize.H"
#include "finalize.hpp"
return 0;
}