Browse Source

ENH: Added a const version of GetLinkLibraries().

Brad King 24 years ago
parent
commit
222199b3cd
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Source/cmMakefile.h

+ 8 - 0
Source/cmMakefile.h

@@ -182,6 +182,14 @@ public:
     return m_LinkLibraries;
     }
 
+  /**
+   * Get a list of link libraries in the build.
+   */
+  const cmTarget::LinkLibraries& GetLinkLibraries() const
+    { 
+    return m_LinkLibraries;
+    }
+
   /**
    * Add a link library to the build.
    */