Skip to content

Commit 10cf508

Browse files
authored
Changed syntax for AM_CPPFLAGS
as per suggestion in #1088 (comment) Not ALL of these are needed currently.
1 parent 3b05b3e commit 10cf508

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

unittest/Makefile.am

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
AUTOMAKE_OPTIONS = subdir-objects
22

3-
AM_CPPFLAGS += \
4-
-DUSE_STD_NAMESPACE -DPANGO_ENABLE_ENGINE \
5-
-I$(top_srcdir)/ccmain -I$(top_srcdir)/api \
6-
-I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct \
7-
-I$(top_srcdir)/lstm -I$(top_srcdir)/arch \
8-
-I$(top_srcdir)/viewer \
9-
-I$(top_srcdir)/textord -I$(top_srcdir)/dict \
10-
-I$(top_srcdir)/classify -I$(top_srcdir)/display \
11-
-I$(top_srcdir)/wordrec -I$(top_srcdir)/cutil
3+
AM_CPPFLAGS += -DUSE_STD_NAMESPACE -DPANGO_ENABLE_ENGINE
4+
AM_CPPFLAGS += -I$(top_srcdir)/api
5+
AM_CPPFLAGS += -I$(top_srcdir)/arch
6+
AM_CPPFLAGS += -I$(top_srcdir)/ccmain
7+
AM_CPPFLAGS += -I$(top_srcdir)/ccstruct
8+
AM_CPPFLAGS += -I$(top_srcdir)/ccutil
9+
AM_CPPFLAGS += -I$(top_srcdir)/classify
10+
AM_CPPFLAGS += -I$(top_srcdir)/cutil
11+
AM_CPPFLAGS += -I$(top_srcdir)/dict
12+
AM_CPPFLAGS += -I$(top_srcdir)/display
13+
AM_CPPFLAGS += -I$(top_srcdir)/lstm
14+
AM_CPPFLAGS += -I$(top_srcdir)/textord
15+
AM_CPPFLAGS += -I$(top_srcdir)/viewer
16+
AM_CPPFLAGS += -I$(top_srcdir)/wordrec
1217

1318
# Build googletest:
1419
check_LTLIBRARIES = libgtest.la libgtest_main.la

0 commit comments

Comments
 (0)