Code modifications to adapt to include files moving
This commit is contained in:
parent
9de4bf0cc9
commit
c89ee9f1ca
|
@ -1,7 +1,14 @@
|
|||
INCLUDE_DIRECTORIES(${CHAMS_SOURCE_DIR}/agds)
|
||||
|
||||
SET ( includes GdsLibrary.h GdsStructure.h GdsElement.h GdsRectangle.h )
|
||||
SET ( cpps GdsLibrary.cpp GdsStructure.cpp GdsRectangle.cpp )
|
||||
SET ( includes vlsisapd/agds/GdsLibrary.h
|
||||
vlsisapd/agds/GdsStructure.h
|
||||
vlsisapd/agds/GdsElement.h
|
||||
vlsisapd/agds/GdsRectangle.h
|
||||
)
|
||||
SET ( cpps GdsLibrary.cpp
|
||||
GdsStructure.cpp
|
||||
GdsRectangle.cpp
|
||||
)
|
||||
|
||||
ADD_LIBRARY(agds ${cpps})
|
||||
INSTALL(TARGETS agds DESTINATION lib${LIB_SUFFIX})
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include <ctime>
|
||||
using namespace std;
|
||||
|
||||
#include "GdsLibrary.h"
|
||||
#include "vlsisapd/agds/GdsLibrary.h"
|
||||
|
||||
namespace vlsisapd {
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include <iomanip>
|
||||
using namespace std;
|
||||
|
||||
#include "GdsRectangle.h"
|
||||
#include "vlsisapd/agds/GdsRectangle.h"
|
||||
|
||||
namespace vlsisapd {
|
||||
GdsElement::~GdsElement () { }
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include <ctime>
|
||||
using namespace std;
|
||||
|
||||
#include "GdsStructure.h"
|
||||
#include "vlsisapd/agds/GdsStructure.h"
|
||||
|
||||
namespace vlsisapd {
|
||||
GdsStructure::GdsStructure(string strName)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
#include "GdsStructure.h"
|
||||
#include "vlsisapd/agds/GdsStructure.h"
|
||||
|
||||
namespace vlsisapd {
|
||||
class GdsLibrary {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <fstream>
|
||||
|
||||
#include "GdsElement.h"
|
||||
#include "vlsisapd/agds/GdsElement.h"
|
||||
|
||||
namespace vlsisapd {
|
||||
class GdsRectangle : public GdsElement {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
#include "GdsElement.h"
|
||||
#include "vlsisapd/agds/GdsElement.h"
|
||||
|
||||
namespace vlsisapd {
|
||||
class GdsStructure {
|
||||
|
|
Loading…
Reference in New Issue