source: trunk/lang/octave/RpOctaveInterface.h @ 1095

Last change on this file since 1095 was 718, checked in by dkearney, 17 years ago

after the core rappture library (librappture.so) is created the include
files necessary to compile all other bindings are copied to the top level
include directory. python, perl, matlab, octave and tcl bindings now refer
to this top level include directory to find header files.

fortran and c examples are only compiled if we find a compiler, this check
helps prevent builds from failing before the libraries are installed.

added more checks to the configure script

removed rappture search paths from perl's unix build because perl could find
an older version of rappture and compile against it. I would rather the build
fail and have the person enter a valid prefix.

addrd the -fPIC flag to CFLAGS in src2's makefile

File size: 672 bytes
Line 
1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: Rappture-Octave Bindings Header
4 *
5 * ======================================================================
6 *  AUTHOR:  Derrick Kearney, Purdue University
7 *  Copyright (c) 2005-2007
8 *  Purdue Research Foundation, West Lafayette, IN
9 * ======================================================================
10 */
11
12#ifndef _Rp_OCTAVE_HELPER_H
13#define _Rp_OCTAVE_HELPER_H
14
15#include "rappture.h"
16#include "RpBindingsDict.h"
17
18// include the octave api header
19#include "octave/oct.h"
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif // _Rp_OCTAVE_HELPER_H
Note: See TracBrowser for help on using the repository browser.