File: GNUmakefile.am

package info (click to toggle)
qtwebkit 2.3.4.dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 290,116 kB
  • ctags: 272,544
  • sloc: cpp: 1,417,496; python: 85,048; ansic: 39,353; perl: 38,858; ruby: 10,313; objc: 9,505; xml: 8,679; asm: 3,864; yacc: 2,458; sh: 1,237; lex: 813; makefile: 592; java: 228; php: 79
file content (53 lines) | stat: -rw-r--r-- 2,377 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

noinst_LTLIBRARIES += \
	Libraries/libgtest.la

Libraries_libgtest_la_SOURCES = \
	Source/ThirdParty/gtest/include/gtest/gtest.h \
	Source/ThirdParty/gtest/include/gtest/gtest-death-test.h \
	Source/ThirdParty/gtest/include/gtest/gtest-message.h \
	Source/ThirdParty/gtest/include/gtest/gtest-param-test.h \
	Source/ThirdParty/gtest/include/gtest/gtest_pred_impl.h \
	Source/ThirdParty/gtest/include/gtest/gtest_prod.h \
	Source/ThirdParty/gtest/include/gtest/gtest-spi.h \
	Source/ThirdParty/gtest/include/gtest/gtest-test-part.h \
	Source/ThirdParty/gtest/include/gtest/gtest-typed-test.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-death-test-internal.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-filepath.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-internal.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-linked_ptr.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-string.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h \
	Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h \
	Source/ThirdParty/gtest/src/gtest-all.cc

# Use -isystem gcc flag so that gcc considers gtest headers as system headers.
# We need this to avoid a lot of compile warnings due to -Wundef.
# See http://code.google.com/p/googletest/issues/detail?id=258
Libraries_libgtest_la_CPPFLAGS = \
	$(global_cppflags) \
	$(javascriptcore_cppflags) \
	-isystem $(srcdir)/Source/ThirdParty/gtest \
	-isystem $(srcdir)/Source/ThirdParty/gtest/include \
	-I$(srcdir)/Source/WTF \
	-I$(srcdir)/Source/ThirdParty/gtest \
	-I$(srcdir)/Source/ThirdParty/gtest/include

Libraries_libgtest_la_CXXFLAGS = -DGTEST_HAS_PTHREAD=1
Libraries_libgtest_la_LIBADD = \
	-lpthread

# gtest source files that we don't compile directly.  They are
# #included by gtest-all.cc.
EXTRA_DIST += \
	Source/ThirdParty/gtest/src/gtest.cc \
	Source/ThirdParty/gtest/src/gtest-death-test.cc \
	Source/ThirdParty/gtest/src/gtest-filepath.cc \
	Source/ThirdParty/gtest/src/gtest-internal-inl.h \
	Source/ThirdParty/gtest/src/gtest-port.cc \
	Source/ThirdParty/gtest/src/gtest-test-part.cc \
	Source/ThirdParty/gtest/src/gtest-typed-test.cc