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
|
# /*******************************************************************
# Part of the Fritzing project - http://fritzing.org
# Copyright (c) 2007-08 Fritzing
# Fritzing is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# Fritzing is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with Fritzing. If not, see <http://www.gnu.org/licenses/>.
# ********************************************************************/
HEADERS += \
src/items/breadboard.h \
src/items/capacitor.h \
src/items/clipablewire.h \
src/items/dip.h \
src/items/groundplane.h \
src/items/hole.h \
src/items/itembase.h \
src/items/jumperitem.h \
src/items/layerkinpaletteitem.h \
src/items/led.h \
src/items/logoitem.h \
src/items/moduleidnames.h \
src/items/mysterypart.h \
src/items/note.h \
src/items/pad.h \
src/items/paletteitem.h \
src/items/paletteitembase.h \
src/items/partfactory.h \
src/items/partlabel.h \
src/items/perfboard.h \
src/items/pinheader.h \
src/items/propertydef.h \
src/items/resistor.h \
src/items/resizableboard.h \
src/items/ruler.h \
src/items/schematicframe.h \
src/items/schematicsubpart.h \
src/items/screwterminal.h \
src/items/stripboard.h \
src/items/symbolpaletteitem.h \
src/items/tracewire.h \
src/items/via.h \
src/items/virtualwire.h \
src/items/wire.h \
src/items/FProbeR1PosPCB.h \
src/items/FProbeRPartLabel.h \
src/items/FProbeSwitchPackage.h \
SOURCES += \
src/items/breadboard.cpp \
src/items/capacitor.cpp \
src/items/clipablewire.cpp \
src/items/dip.cpp \
src/items/groundplane.cpp \
src/items/hole.cpp \
src/items/itembase.cpp \
src/items/jumperitem.cpp \
src/items/layerkinpaletteitem.cpp \
src/items/led.cpp \
src/items/logoitem.cpp \
src/items/moduleidnames.cpp \
src/items/mysterypart.cpp \
src/items/note.cpp \
src/items/pad.cpp \
src/items/paletteitem.cpp \
src/items/paletteitembase.cpp \
src/items/partfactory.cpp \
src/items/partlabel.cpp \
src/items/perfboard.cpp \
src/items/pinheader.cpp \
src/items/propertydef.cpp \
src/items/resistor.cpp \
src/items/resizableboard.cpp \
src/items/ruler.cpp \
src/items/schematicframe.cpp \
src/items/schematicsubpart.cpp \
src/items/screwterminal.cpp \
src/items/stripboard.cpp \
src/items/symbolpaletteitem.cpp \
src/items/tracewire.cpp \
src/items/via.cpp \
src/items/virtualwire.cpp \
src/items/wire.cpp \
src/items/FProbeR1PosPCB.cpp \
src/items/FProbeRPartLabel.cpp \
src/items/FProbeSwitchPackage.cpp \
|