Changeset 5487
- Timestamp:
- Jul 11, 2008, 12:45:58 PM (15 years ago)
- Location:
- anuga_work/development/anugavis
- Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/anugavis/configure.ac
r5292 r5487 10 10 # Checks for programs. 11 11 AC_PROG_CC 12 A M_PROG_CC_C_O12 AC_PROG_CXX 13 13 AC_PROG_RANLIB 14 14 … … 24 24 AC_CHECK_HEADER([netcdf.h], [], 25 25 [AC_MSG_ERROR([Can't find the NetCDF header. (CPPFLAGS?)])]) 26 AC_CHECK_HEADER([windows.h]) 27 AX_BOOST_BASE([1.35.0]) 26 28 27 29 # Checks for typedefs, structures, and compiler characteristics. 28 30 AC_C_CONST 31 AC_C_INLINE 29 32 AC_TYPE_SIZE_T 33 AM_PROG_CC_C_O 30 34 31 35 # Checks for library functions. -
anuga_work/development/anugavis/src/Makefile.am
r5379 r5487 1 1 ## Process this file with automake to generate Makefile.in 2 AM_CFLAGS = $(SDL_CFLAGS) $(GLU_CFLAGS) 3 AM_CXXFLAGS = $(SDL_CFLAGS) $(GLU_CFLAGS) 2 4 3 5 # Convenience library for the core visualiser code. 4 noinst_LIBRARIES = libanugavis.a 6 noinst_LIBRARIES = libanugavis.a libanugavis_cxx.a 5 7 libanugavis_a_SOURCES = camera.c \ 6 8 camera.h \ … … 20 22 xfunctions.c \ 21 23 xfunctions.h 22 libanugavis_a_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@ 23 libanugavis_a_LIBADD = @LIBOBJS@ 24 libanugavis_a_LIBADD = $(LIBOBJS) 25 libanugavis_cxx_a_SOURCES = anugavis.cc \ 26 anugavis.hh \ 27 netcdf_file.cc \ 28 netcdf_file.hh \ 29 output.cc \ 30 output.hh 31 libanugavis_cxx_a_LIBADD = $(LIBOBJS) 24 32 25 33 bin_PROGRAMS = anugavis_simple 26 anugavis_simple_SOURCES = anugavis_simple.c 27 anugavis_simple_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@ 28 anugavis_simple_LDADD = libanugavis.a @SDL_LIBS@ @GLU_LIBS@ 34 anugavis_simple_SOURCES = anugavis_simple_cxx.cc 35 anugavis_simple_LDADD = libanugavis_cxx.a $(SDL_LIBS) $(GLU_LIBS)
Note: See TracChangeset
for help on using the changeset viewer.