File: gtest.mk

package info (click to toggle)
jellyfish 2.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,276 kB
  • sloc: cpp: 35,703; sh: 995; ruby: 578; makefile: 397; python: 165; perl: 36
file content (18 lines) | stat: -rwxr-xr-x 588 bytes parent folder | download | duplicates (4)
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 -I$(srcdir)/unit_tests/gtest
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)