Trying move + corrections in one shot
This commit is contained in:
parent
be609e2e75
commit
638e7dd058
|
@ -1,7 +1,11 @@
|
||||||
INCLUDE_DIRECTORIES(${CHAMS_SOURCE_DIR}/cif)
|
INCLUDE_DIRECTORIES(${CHAMS_SOURCE_DIR}/src/cif)
|
||||||
|
|
||||||
SET ( includes CifCircuit.h CifPolygon.h )
|
SET ( includes vlsisapd/cif/CifCircuit.h
|
||||||
SET ( cpps CifCircuit.cpp CifPolygon.cpp )
|
vlsisapd/cif/CifPolygon.h
|
||||||
|
)
|
||||||
|
SET ( cpps CifCircuit.cpp
|
||||||
|
CifPolygon.cpp
|
||||||
|
)
|
||||||
|
|
||||||
ADD_LIBRARY(cif ${cpps})
|
ADD_LIBRARY(cif ${cpps})
|
||||||
INSTALL(TARGETS cif DESTINATION lib${LIB_SUFFIX})
|
INSTALL(TARGETS cif DESTINATION lib${LIB_SUFFIX})
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
#include "CifCircuit.h"
|
#include "vlsisapd/cif/CifCircuit.h"
|
||||||
#include "CifPolygon.h"
|
#include "vlsisapd/cif/CifPolygon.h"
|
||||||
|
|
||||||
namespace vlsisapd {
|
namespace vlsisapd {
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
#include "CifPolygon.h"
|
#include "vlsisapd/cif/CifPolygon.h"
|
||||||
|
|
||||||
namespace vlsisapd {
|
namespace vlsisapd {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue