Trying move + corrections in one shot

This commit is contained in:
Damien Dupuis 2010-06-03 14:06:42 +00:00
parent be609e2e75
commit 638e7dd058
5 changed files with 10 additions and 6 deletions

View File

@ -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})

View File

@ -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 {

View File

@ -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 {