Commit a441900d authored by dickelbeck's avatar dickelbeck
Browse files

started specctra dsn import/export

parent 467d9d36
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,15 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.


2007-Dec-22 UPDATE   Dick Hollenbeck <dick@softplc.com>
================================================================================
+all
    added strlower() to common.h and string.cpp.
    fixed compiler warnings in common/gr_basic.cpp and pcbnew/clean.cpp
+pcbnew
    started the DSN file import/export for SPECCTRA routers, adding dsn.cpp and
    specctra.cpp, with "stand alone" compile support for it in pcbnew/CMakeLists.txt.



2007-Dec-17 UPDATE   Dick Hollenbeck <dick@softplc.com>
2007-Dec-17 UPDATE   Dick Hollenbeck <dick@softplc.com>
================================================================================
================================================================================
+7 −0
Original line number Original line Diff line number Diff line
@@ -116,6 +116,7 @@ SET(PCBNEW_SRCS
	set_color.cpp
	set_color.cpp
	set_grid.cpp
	set_grid.cpp
	solve.cpp
	solve.cpp
#   specctra.cpp
	surbrill.cpp
	surbrill.cpp
	swap_layers.cpp
	swap_layers.cpp
	tool_modedit.cpp
	tool_modedit.cpp
@@ -153,6 +154,12 @@ ENDIF(APPLE)


ADD_EXECUTABLE(pcbnew WIN32 MACOSX_BUNDLE ${PCBNEW_SRCS} ${PCBNEW_EXTRA_SRCS} ${PCBNEW_RESOURCES})
ADD_EXECUTABLE(pcbnew WIN32 MACOSX_BUNDLE ${PCBNEW_SRCS} ${PCBNEW_EXTRA_SRCS} ${PCBNEW_RESOURCES})


# This one gets made only when testing
SET_SOURCE_FILES_PROPERTIES( dsn.cpp PROPERTIES COMPILE_FLAGS -DSTANDALONE )
ADD_EXECUTABLE( dsntest EXCLUDE_FROM_ALL dsn.cpp )
TARGET_LINK_LIBRARIES( dsntest common ${wxWidgets_LIBRARIES} )


TARGET_LINK_LIBRARIES(pcbnew common 3d-viewer ${wxWidgets_LIBRARIES})
TARGET_LINK_LIBRARIES(pcbnew common 3d-viewer ${wxWidgets_LIBRARIES})


INSTALL(TARGETS pcbnew RUNTIME DESTINATION ${KICAD_BIN})
INSTALL(TARGETS pcbnew RUNTIME DESTINATION ${KICAD_BIN})