2005-01-26 23:33:38 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmDependsFortran_h
|
|
|
|
#define cmDependsFortran_h
|
|
|
|
|
|
|
|
#include "cmDepends.h"
|
|
|
|
|
|
|
|
/** \class cmDependsFortran
|
|
|
|
* \brief Dependency scanner for Fortran object files.
|
|
|
|
*/
|
|
|
|
class cmDependsFortran: public cmDepends
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Checking instances need to know the build directory name and the
|
|
|
|
relative path from the build directory to the target file. */
|
2005-05-11 21:16:45 +04:00
|
|
|
cmDependsFortran();
|
2005-01-26 23:33:38 +03:00
|
|
|
|
|
|
|
/** Scanning need to know the build directory name, the relative
|
|
|
|
path from the build directory to the target file, the source
|
|
|
|
file from which to start scanning, and the include file search
|
|
|
|
path. */
|
2005-07-27 17:49:37 +04:00
|
|
|
cmDependsFortran(std::vector<std::string> const& includes);
|
2005-01-26 23:33:38 +03:00
|
|
|
|
|
|
|
/** Virtual destructor to cleanup subclasses properly. */
|
|
|
|
virtual ~cmDependsFortran();
|
|
|
|
|
2005-03-04 00:53:33 +03:00
|
|
|
/** Callback from build system after a .mod file has been generated
|
|
|
|
by a Fortran90 compiler to copy the .mod file to the
|
|
|
|
corresponding stamp file. */
|
|
|
|
static bool CopyModule(const std::vector<std::string>& args);
|
|
|
|
|
2005-01-26 23:33:38 +03:00
|
|
|
/** Method to find an included file in the include path. Fortran
|
|
|
|
always searches the directory containing the including source
|
|
|
|
first. */
|
|
|
|
bool FindIncludeFile(const char* dir, const char* includeName,
|
|
|
|
std::string& fileName);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Implement writing/checking methods required by superclass.
|
2005-10-12 21:52:29 +04:00
|
|
|
virtual bool WriteDependencies(
|
|
|
|
const char *src, const char *file,
|
|
|
|
std::ostream& makeDepends, std::ostream& internalDepends);
|
2005-01-26 23:33:38 +03:00
|
|
|
|
|
|
|
// The source file from which to start scanning.
|
|
|
|
std::string m_SourceFile;
|
|
|
|
|
|
|
|
// The include file search path.
|
|
|
|
std::vector<std::string> const* m_IncludePath;
|
|
|
|
|
|
|
|
private:
|
|
|
|
cmDependsFortran(cmDependsFortran const&); // Purposely not implemented.
|
|
|
|
void operator=(cmDependsFortran const&); // Purposely not implemented.
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|