File: meson.build

package info (click to toggle)
openvpn3-client 24.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 19,384 kB
  • sloc: cpp: 180,128; python: 11,591; ansic: 1,878; sh: 1,767; java: 402; lisp: 81; makefile: 44
file content (24 lines) | stat: -rw-r--r-- 755 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
# pkg-config support for GTest is in the master
# branch of the upstream repository.
# In order to be consistent with the upstream
# naming and the library conventions, the
# following changes have been made:
#
#   gtest_mainless_dep -> gtest_dep
#   gtest_with_main_dep -> gtest_main_dep

gtest_incdir = include_directories('include', '.', is_system : true)
gtest_libsources = files('src/gtest-all.cc')
gtest_mainsources = files('src/gtest_main.cc')

gtest_dep = declare_dependency(
	include_directories : gtest_incdir,
	sources : gtest_libsources,
	dependencies : dependency('threads')
)

gtest_main_dep = declare_dependency(
	include_directories : gtest_incdir,
	sources : [gtest_libsources, gtest_mainsources],
	dependencies : dependency('threads')
)