Changeset 1308
- Timestamp:
- 03/05/07 22:33:10 (21 months ago)
- Location:
- branches/icy_omero/components/icy-model
- Files:
-
- 5 modified
-
. (modified) (1 prop)
-
autogen.sh (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
src/cpp (modified) (1 prop)
-
src/cpp/Makefile.am (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/icy_omero/components/icy-model
- Property svn:ignore
-
old new 1 1 target 2 2 temp-testng-customsuite.xml 3 configure 4 Makefile.in 5 config.log 6 depcomp 7 config.h 8 .ant-targets-build.xml 9 .libs 10 Makefile 11 config.status 12 stamp-h1 13 config.h.in 14 autom4te.cache 15 missing 16 aclocal.m4 17 install-sh 18 config.guess 19 config.sub 20 ltmain.sh 21 libtool
-
- Property svn:ignore
-
branches/icy_omero/components/icy-model/autogen.sh
r1306 r1308 21 21 autoheader || exit; 22 22 automake --add-missing --copy; 23 libtoolize 23 24 autoconf || exit; 24 25 automake || exit; -
branches/icy_omero/components/icy-model/configure.ac
r1306 r1308 36 36 AC_PROG_MAKE_SET 37 37 AC_PROG_RANLIB 38 AC_PROG_LIBTOOL 38 39 39 40 dnl Do it early just in case any weird checks require it... -
branches/icy_omero/components/icy-model/src/cpp
- Property svn:ignore
-
old new 3 3 Makefile.in 4 4 .deps 5 .libs
-
- Property svn:ignore
-
branches/icy_omero/components/icy-model/src/cpp/Makefile.am
r1306 r1308 1 AUTOMAKE_OPTIONS = foreign 2 1 3 SLICE_DIR=@SLICE_DIR@ 2 4 SLICE_OME=../../resources/slice … … 19 21 @SLICE2CPP@ $(SLICE_INCLUDES) --output-dir=$(CPP_GEN) $(SLICE_OME)/*.ice 20 22 21 # ./generated/ObjectFactoryRegistrar.cpp 22 23 lib_LIBRARIES = libOMERO_model.a libOMERO_client.a 24 libOMERO_model_a_SOURCES = ./DetailsI.cpp ./PermissionsI.cpp \ 23 lib_LTLIBRARIES = libOMERO_model.la libOMERO_client.la 24 libOMERO_model_la_SOURCES = ./DetailsI.cpp ./PermissionsI.cpp \ 25 25 ./generated/AberrationCorrection.cpp \ 26 26 ./generated/AberrationCorrectionI.cpp \ … … 315 315 #libOMERO_model_a_LDFLAGS = -no-undefined -version-info 0:0:0 316 316 317 libOMERO_client_ a_SOURCES= ./OMERO/client.cpp318 libOMERO_client_ a_LIBADD = libOMERO_model.a317 libOMERO_client_la_SOURCES= ./OMERO/client.cpp ./generated/ObjectFactoryRegistrar.cpp 318 libOMERO_client_la_LIBADD = libOMERO_model.la 319 319 #libOMERO_client_a_LDFLAGS= -no-undefined -version-info 0:0:0 320 320 321 321 bin_PROGRAMS = OMERO.demo 322 322 OMERO_demo_SOURCES = main.cpp 323 OMERO_demo_LDADD = libOMERO_model.a libOMERO_client.a 324 323 OMERO_demo_LDADD = libOMERO_client.la 324 325
