Skip to content
Snippets Groups Projects
Commit 2d92e247 authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Build CDI application for testing.

parent d3cefd75
No related branches found
No related tags found
1 merge request!7Replaced gridDefDatatype()/gridInqDatatype() by cdiDefKeyInt()/cdiInqKeyInt()...
## Process this file with automake to produce Makefile.in
#
SUBDIRS = src interfaces examples examples/pio tests
if ENABLE_CDI_APP
SUBDIRS += app
endif
SUBDIRS = src interfaces app examples examples/pio tests
#
EXTRA_DIST=config/default \
doc/cdi_cman.pdf \
......
......@@ -2,13 +2,18 @@
#
bin_PROGRAMS =
noinst_PROGRAMS =
check_PROGRAMS =
if ENABLE_CDI_APP
if ENABLE_CDI_LIB
bin_PROGRAMS += cdi
else
noinst_PROGRAMS += cdi
endif
bin_PROGRAMS += cdi
else !ENABLE_CDI_LIB
noinst_PROGRAMS += cdi
endif !ENABLE_CDI_LIB
noinst_PROGRAMS += createtable
else !ENABLE_CDI_APP
check_PROGRAMS += cdi
endif !ENABLE_CDI_APP
#
noinst_PROGRAMS += createtable
#
cdi_SOURCES = cdi.c printinfo.c printinfo.h
cdi_LDADD = $(top_builddir)/src/libcdi.la @LIBS@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment