Browse Source

Exclude test files that don't compile when Windows (MinGW)

pre-master-46
sjborley 21 years ago
parent
commit
23273668b6
  1. 5
      src/maths/cmaths/Makefile.am

5
src/maths/cmaths/Makefile.am

@ -13,6 +13,9 @@ libcmaths_a_SOURCES = \
cmath4.c \
cmath4.h
## Test programs fail to build on Windows
if !WINDOWS
noinst_PROGRAMS = test_cx_mag test_cx_j test_cx_ph
test_cx_ph_SOURCES = \
@ -38,6 +41,8 @@ test_cx_j_LDADD = \
TESTS = test_cx_mag test_cx_j test_cx_ph
endif !WINDOWS
INCLUDES = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/maths/poly

Loading…
Cancel
Save