1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
TARGET = dime
TEMPLATE = lib
INCLUDEPATH += ../include;
unix:INCLUDEPATH += $(ZLIBDIR)/include;
win32:INCLUDEPATH += $(ZLIBDIR);
win32:DEFINES += DIME_NOT_DLL
HEADERS = ../include/dime/Basic.h \
../include/dime/Base.h \
../include/dime/Input.h \
../include/dime/Output.h \
../include/dime/Model.h \
../include/dime/RecordHolder.h \
../include/dime/Layer.h \
../include/dime/State.h \
../include/dime/util/Array.h \
../include/dime/util/Dict.h \
../include/dime/util/Linear.h \
../include/dime/util/MemHandler.h \
../include/dime/util/BSPTree.h \
../include/dime/util/Box.h \
../include/dime/records/Record.h \
../include/dime/records/StringRecord.h \
../include/dime/records/Int8Record.h \
../include/dime/records/Int16Record.h \
../include/dime/records/Int32Record.h \
../include/dime/records/DoubleRecord.h \
../include/dime/records/HexRecord.h \
../include/dime/records/FloatRecord.h \
../include/dime/sections/Section.h \
../include/dime/sections/UnknownSection.h \
../include/dime/sections/EntitiesSection.h \
../include/dime/sections/BlocksSection.h \
../include/dime/sections/TablesSection.h \
../include/dime/sections/HeaderSection.h \
../include/dime/sections/ClassesSection.h \
../include/dime/sections/ObjectsSection.h \
../include/dime/classes/Class.h \
../include/dime/classes/UnknownClass.h \
../include/dime/objects/Object.h \
../include/dime/objects/UnknownObject.h \
../include/dime/entities/Entity.h \
../include/dime/entities/UnknownEntity.h \
../include/dime/entities/FaceEntity.h \
../include/dime/entities/ExtrusionEntity.h \
../include/dime/entities/3DFace.h \
../include/dime/entities/Polyline.h \
../include/dime/entities/Vertex.h \
../include/dime/entities/Line.h \
../include/dime/entities/Point.h \
../include/dime/entities/Block.h \
../include/dime/entities/Insert.h \
../include/dime/entities/Solid.h \
../include/dime/entities/Trace.h \
../include/dime/entities/Circle.h \
../include/dime/entities/Ellipse.h \
../include/dime/entities/Arc.h \
../include/dime/entities/LWPolyline.h \
../include/dime/entities/Spline.h \
../include/dime/entities/Text.h \
../include/dime/tables/Table.h \
../include/dime/tables/TableEntry.h \
../include/dime/tables/UnknownTable.h \
../include/dime/tables/UCSTable.h \
../include/dime/tables/LayerTable.h \
../include/dime/convert/convert.h
SOURCES = ../src/Base.cpp \
../src/Basic.cpp \
../src/Input.cpp \
../src/Output.cpp \
../src/Model.cpp \
../src/RecordHolder.cpp \
../src/Layer.cpp \
../src/State.cpp \
../src/util/Array.cpp \
../src/util/Dict.cpp \
../src/util/Linear.cpp \
../src/util/MemHandler.cpp \
../src/util/BSPTree.cpp \
../src/util/Box.cpp \
../src/records/Record.cpp \
../src/records/StringRecord.cpp \
../src/records/Int8Record.cpp \
../src/records/Int16Record.cpp \
../src/records/Int32Record.cpp \
../src/records/DoubleRecord.cpp \
../src/records/HexRecord.cpp \
../src/records/FloatRecord.cpp \
../src/sections/Section.cpp \
../src/sections/UnknownSection.cpp \
../src/sections/EntitiesSection.cpp \
../src/sections/BlocksSection.cpp \
../src/sections/TablesSection.cpp \
../src/sections/HeaderSection.cpp \
../src/sections/ClassesSection.cpp \
../src/sections/ObjectsSection.cpp \
../src/classes/Class.cpp \
../src/classes/UnknownClass.cpp \
../src/objects/Object.cpp \
../src/objects/UnknownObject.cpp \
../src/entities/Entity.cpp \
../src/entities/UnknownEntity.cpp \
../src/entities/FaceEntity.cpp \
../src/entities/ExtrusionEntity.cpp \
../src/entities/3DFace.cpp \
../src/entities/Polyline.cpp \
../src/entities/Vertex.cpp \
../src/entities/Line.cpp \
../src/entities/Point.cpp \
../src/entities/Block.cpp \
../src/entities/Insert.cpp \
../src/entities/Solid.cpp \
../src/entities/Text.cpp \
../src/entities/Trace.cpp \
../src/entities/Circle.cpp \
../src/entities/Ellipse.cpp \
../src/entities/Spline.cpp \
../src/entities/Arc.cpp \
../src/entities/LWPolyline.cpp \
../src/tables/Table.cpp \
../src/tables/TableEntry.cpp \
../src/tables/UnknownTable.cpp \
../src/tables/UCSTable.cpp \
../src/tables/LayerTable.cpp \
../src/convert/3dfaceconvert.cpp \
../src/convert/arcconvert.cpp \
../src/convert/circleconvert.cpp \
../src/convert/convert.cpp \
../src/convert/ellipseconvert.cpp \
../src/convert/layerdata.cpp \
../src/convert/lineconvert.cpp \
../src/convert/linesegment.cpp \
../src/convert/lwpolylineconvert.cpp \
../src/convert/pointconvert.cpp \
../src/convert/polylineconvert.cpp \
../src/convert/solidconvert.cpp \
../src/convert/traceconvert.cpp
|