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
|
libodindata_la_LDFLAGS = -no-undefined -release $(VERSION) $(DATALIBS)
libodindata_la_LIBADD = ../odinpara/libodinpara.la
if ONLY_LIBS
else
AM_CPPFLAGS = $(all_includes)
lib_LTLIBRARIES = libodindata.la
library_includedir=$(includedir)/odindata
library_include_HEADERS = \
data.h \
complexdata.h \
converter.h \
fileio.h \
fileio_opts.h \
filter.h \
correlation.h \
fitting.h \
gridding.h \
integration.h \
image.h \
linalg.h \
statistics.h \
step.h step_code.h \
utils.h
libodindata_la_SOURCES = \
data.h data.cpp \
complexdata.h complexdata.cpp \
converter.h converter.cpp \
fileio.h fileio.cpp \
fileio_opts.h fileio_opts.cpp \
fileio_3db.cpp \
fileio_asc.cpp \
fileio_dicom.cpp \
fileio_gzip.cpp \
fileio_hfss.cpp \
fileio_interfile.cpp \
fileio_ismrmrd.cpp \
fileio_ser.cpp \
fileio_mat.cpp \
fileio_mhd.cpp \
fileio_nifti.cpp \
fileio_png.cpp \
fileio_raw.cpp \
fileio_vtk.cpp \
filter.h filter.cpp \
filter_step.h filter_step.cpp \
filter_align.h filter_align.cpp \
filter_clip.h filter_clip.cpp \
filter_cluster.h filter_cluster.cpp \
filter_convolve.h filter_convolve.cpp \
filter_detrend.h filter_detrend.cpp \
filter_edit.h filter_edit.cpp \
filter_flip.h filter_flip.cpp \
filter_inv.h filter_inv.cpp \
filter_lowpass.h filter_lowpass.cpp \
filter_mask.h filter_mask.cpp \
filter_merge.h filter_merge.cpp \
filter_morph.h filter_morph.cpp \
filter_nan.h filter_nan.cpp \
filter_range.h filter_range.cpp \
filter_reduction.h filter_reduction.cpp \
filter_reslice.h filter_reslice.cpp \
filter_resize.h filter_resize.cpp \
filter_rot.h filter_rot.cpp \
filter_scale.h filter_scale.cpp \
filter_shift.h filter_shift.cpp \
filter_slicetime.h filter_slicetime.cpp \
filter_splice.h filter_splice.cpp \
filter_tile.h filter_tile.cpp \
correlation.h correlation.cpp \
fitting.h fitting.cpp \
gridding.h gridding.cpp \
integration.h integration.cpp \
image.h image.cpp \
linalg.h linalg.cpp \
statistics.h statistics.cpp \
step.h step_code.h step.cpp \
utils.h utils.cpp
endif
|