mirror of https://github.com/ecmwf/eccodes.git
ecCodes/ECC-1: install eccodes.h and add new fortran include
This commit is contained in:
parent
f53142e1c2
commit
7510169462
|
@ -0,0 +1,26 @@
|
|||
public :: codes_get, codes_set, codes_set_force, codes_get_data, codes_is_missing, codes_is_defined
|
||||
public :: codes_open_file, codes_close_file,codes_read_bytes,codes_write_bytes
|
||||
public :: codes_multi_support_on, codes_multi_support_off
|
||||
public :: codes_keys_iterator_new, &
|
||||
codes_keys_iterator_next, &
|
||||
codes_keys_iterator_delete
|
||||
public :: codes_skip_computed, &
|
||||
codes_skip_coded, &
|
||||
codes_skip_duplicates, &
|
||||
codes_skip_read_only
|
||||
public :: codes_keys_iterator_get_name, &
|
||||
codes_keys_iterator_rewind
|
||||
public :: codes_new_from_message, &
|
||||
codes_new_from_samples, codes_new_from_file, &
|
||||
codes_read_from_file,codes_headers_only_new_from_file
|
||||
public :: codes_release
|
||||
public :: codes_dump
|
||||
public :: codes_get_error_string
|
||||
public :: codes_get_size
|
||||
public :: codes_get_message_size, codes_copy_message
|
||||
public :: codes_write, codes_multi_append
|
||||
public :: codes_check
|
||||
public :: codes_clone, codes_copy_namespace
|
||||
public :: codes_index_get,codes_index_select,&
|
||||
codes_index_create,codes_index_get_size,codes_index_release,&
|
||||
codes_util_sections_copy
|
|
@ -1,5 +1,6 @@
|
|||
list( APPEND grib_api_srcs
|
||||
grib_api.h
|
||||
eccodes.h
|
||||
action.c
|
||||
action_class_alias.c
|
||||
action_class_gen.c
|
||||
|
@ -329,7 +330,6 @@ list( APPEND grib_api_srcs
|
|||
functions.c
|
||||
grib_accessor_class.h
|
||||
grib_accessor_factory.h
|
||||
grib_api.h
|
||||
grib_api_internal.h
|
||||
grib_api_prototypes.h
|
||||
grib_box_class.h
|
||||
|
@ -396,5 +396,4 @@ ecbuild_add_library(TARGET grib_api
|
|||
${CMATH_LIBRARIES} )
|
||||
|
||||
|
||||
# TODO: add support for jpg and png
|
||||
install( FILES grib_api.h DESTINATION include )
|
||||
install( FILES grib_api.h eccodes.h DESTINATION include )
|
||||
|
|
|
@ -11,7 +11,7 @@ AM_CPPFLAGS = -DGRIB_TEMPLATES_PATH=\"$(GRIB_TEMPLATES_PATH)\" \
|
|||
|
||||
|
||||
lib_LTLIBRARIES = libgrib_api.la
|
||||
include_HEADERS = grib_api.h
|
||||
include_HEADERS = grib_api.h eccodes.h
|
||||
|
||||
libgrib_api_la_prototypes= \
|
||||
action.c \
|
||||
|
|
Loading…
Reference in New Issue