File: Makefile.am

package info (click to toggle)
mdds 3.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,828 kB
  • sloc: cpp: 21,913; exp: 6,696; makefile: 698; ansic: 616; python: 602; sh: 428; lisp: 8
file content (38 lines) | stat: -rw-r--r-- 591 bytes parent folder | download
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
# SPDX-FileCopyrightText: 2025 Kohei Yoshida
#
# SPDX-License-Identifier: MIT

SUBDIRS = \
	gdb \
	flat_segment_tree \
	include \
	multi_type_vector \
	multi_type_matrix \
	point_quad_tree \
	rtree \
	segment_tree \
	sorted_string_map \
	trie_map

AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/test/include \
	$(CXXFLAGS_UNITTESTS)

check_PROGRAMS = \
	ref-pair-test \
	version-test

ref_pair_test_SOURCES = \
	ref_pair_test.cpp \
	test_global.cpp

version_test_SOURCES = \
	version_test.cpp \
	test_global.cpp

TESTS = \
	ref-pair-test \
	version-test

@VALGRIND_CHECK_RULES@