diff options
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index c7aee42..a71fb20 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -350,6 +350,7 @@ public: * Get the list of targets */ cmTargets &GetTargets() { return m_Targets; } + const cmTargets &GetTargets() const { return m_Targets; } /** * Get a list of the build subdirectories. @@ -366,6 +367,10 @@ public: { return m_IncludeDirectories; } + const std::vector<std::string>& GetIncludeDirectories() const + { + return m_IncludeDirectories; + } /** * Get a list of link directories in the build. |