From c3a210e4a54387c861d374948f36321d3c5657fe Mon Sep 17 00:00:00 2001 From: Damien Dupuis Date: Tue, 15 Jun 2010 10:47:16 +0000 Subject: [PATCH] No need for an install command in cmake.ex remove 'import sys' in driveDtr.py script : that was only used for debug --- vlsisapd/examples/agds/cplusplus/cmake.ex | 1 - vlsisapd/examples/cif/cplusplus/cmake.ex | 1 - vlsisapd/examples/dtr/cplusplus/cmake.ex | 1 - vlsisapd/examples/dtr/python/driveDtr.py | 1 - 4 files changed, 4 deletions(-) diff --git a/vlsisapd/examples/agds/cplusplus/cmake.ex b/vlsisapd/examples/agds/cplusplus/cmake.ex index c19d7285..f9ed2ff1 100644 --- a/vlsisapd/examples/agds/cplusplus/cmake.ex +++ b/vlsisapd/examples/agds/cplusplus/cmake.ex @@ -12,5 +12,4 @@ IF(AGDS_FOUND) INCLUDE_DIRECTORIES ( ${AGDS_INCLUDE_DIR} ) ADD_EXECUTABLE ( driveAgds driveAgds.cpp ) TARGET_LINK_LIBRARIES ( driveAgds ${AGDS_LIBRARY} ) - INSTALL ( TARGETS driveAgds DESTINATION . ) ENDIF(AGDS_FOUND) diff --git a/vlsisapd/examples/cif/cplusplus/cmake.ex b/vlsisapd/examples/cif/cplusplus/cmake.ex index 1029a514..ab7c5ba6 100644 --- a/vlsisapd/examples/cif/cplusplus/cmake.ex +++ b/vlsisapd/examples/cif/cplusplus/cmake.ex @@ -12,5 +12,4 @@ IF(CIF_FOUND) INCLUDE_DIRECTORIES ( ${CIF_INCLUDE_DIR} ) ADD_EXECUTABLE ( driveCif driveCif.cpp ) TARGET_LINK_LIBRARIES ( driveCif ${CIF_LIBRARY} ) - INSTALL ( TARGETS driveCif DESTINATION . ) ENDIF(CIF_FOUND) diff --git a/vlsisapd/examples/dtr/cplusplus/cmake.ex b/vlsisapd/examples/dtr/cplusplus/cmake.ex index e83b47ad..9060df96 100644 --- a/vlsisapd/examples/dtr/cplusplus/cmake.ex +++ b/vlsisapd/examples/dtr/cplusplus/cmake.ex @@ -15,5 +15,4 @@ IF(DTR_FOUND) ADD_EXECUTABLE(parseDtr parseDtr.cpp) TARGET_LINK_LIBRARIES(driveDtr ${DTR_LIBRARY} ${LIBXML2_LIBRARIES}) TARGET_LINK_LIBRARIES(parseDtr ${DTR_LIBRARY} ${LIBXML2_LIBRARIES}) - INSTALL(TARGETS driveDtr parseDtr DESTINATION .) ENDIF(DTR_FOUND) diff --git a/vlsisapd/examples/dtr/python/driveDtr.py b/vlsisapd/examples/dtr/python/driveDtr.py index e5258135..a0e60774 100644 --- a/vlsisapd/examples/dtr/python/driveDtr.py +++ b/vlsisapd/examples/dtr/python/driveDtr.py @@ -1,5 +1,4 @@ from pyDTR import * -import sys techno = Techno(Name("myTech"), Name("micro"))