mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
4987e17f46
- Move Tarjan algorithm from cmComputeTargetDepends into its own class cmComputeComponentGraph - Use cmComputeComponentGraph to identify the component DAG of link dependencies in cmComputeLinkDepends - Emit non-trivial component members more than once but always in a contiguous group on the link line
26 lines
886 B
C++
26 lines
886 B
C++
/*=========================================================================
|
|
|
|
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 cmGraphAdjacencyList_h
|
|
#define cmGraphAdjacencyList_h
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
struct cmGraphNodeList: public std::vector<int> {};
|
|
struct cmGraphAdjacencyList: public std::vector<cmGraphNodeList> {};
|
|
|
|
#endif
|