File: gtest.mk

package info (click to toggle)
quorum 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,092 kB
  • sloc: cpp: 21,390; perl: 201; makefile: 90; sh: 81
file content (18 lines) | stat: -rwxr-xr-x 559 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
##############################
# Gtest build.
##############################
# Build rules for libraries.
check_LTLIBRARIES = libgtest.la libgtest_main.la

libgtest_la_SOURCES = unit_tests/gtest/src/gtest-all.cc
libgtest_main_la_SOURCES = unit_tests/gtest/src/gtest_main.cc
libgtest_main_la_LIBADD = libgtest.la
libgtest_la_CXXFLAGS = -I$(srcdir)/unit_tests
libgtest_main_la_CXXFLAGS = -I$(srcdir)/unit_tests

GTEST_SRC = unit_tests/gtest/src/gtest-all.cc	\
	    unit_tests/gtest/src/gtest_main.cc	\
	    unit_tests/gtest/gtest.h

EXTRA_DIST += $(GTEST_SRC)