No need for an install command in cmake.ex

remove 'import sys' in driveDtr.py script : that was only used for debug
This commit is contained in:
Damien Dupuis 2010-06-15 10:47:16 +00:00
parent 5fc116f4b7
commit c3a210e4a5
4 changed files with 0 additions and 4 deletions

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
from pyDTR import *
import sys
techno = Techno(Name("myTech"), Name("micro"))