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
|
#
# load.pro
#
SOFA_DIR = ../..
include($${SOFA_DIR}/sofa.cfg)
TARGET = load$$LIBSUFFIX
TEMPLATE = lib
CONFIG += $$CONFIGLIBRARIES
LIBS *= $$SOFA_EXT_LIBS
LIBS -= -lload$$LIBSUFFIX
# --------------- Sources --------------------
SOURCES += Force.cpp \
ForceUnit.cpp \
Load.cpp \
Loads.cpp \
PressureUnit.cpp \
RotationUnit.cpp \
TargetList.cpp \
Translation.cpp \
TranslationUnit.cpp \
ValueEvent.cpp \
XMLLoads.cpp \
HEADERS += Direction.h \
Force.h \
ForceUnit.h \
Load.h \
Loads.h \
LoadsVersion.h \
Pressure.h \
PressureUnit.h \
Rotation.h \
RotationUnit.h \
TargetList.h \
Translation.h \
TranslationUnit.h \
Unit.h \
ValueEvent.h \
XMLLoads.h \
xmlio.h
|