~fginther/frame/precise-transitional-1

« back to all changes in this revision

Viewing changes to test/Makefile-xorg-gtest.am

  • Committer: Francis Ginther
  • Date: 2012-08-08 14:45:26 UTC
  • mfrom: (1.1.13)
  • Revision ID: francis.ginther@canonical.com-20120808144526-5x9p295ps2k6oy87
* Update debian/watch file for project rename
* New upstream release.
  - Compile fixes
  - Removal of v1 API
  - Accept/reject owned touches that have already ended (lp: #1025297)
  - Rename project to "Frame"
  - Remove ChangeLog

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2012 Canonical, Ltd.
2
 
#
3
 
# Permission is hereby granted, free of charge, to any person obtaining a copy
4
 
# of this software and associated documentation files (the "Software"), to deal
5
 
# in the Software without restriction, including without limitation the rights
6
 
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
 
# copies of the Software, and to permit persons to whom the Software is
8
 
# furnished to do so, subject to the following conditions:
9
 
#
10
 
# The above copyright notice and this permission notice (including the next
11
 
# paragraph) shall be included in all copies or substantial portions of the
12
 
# Software.
13
 
#
14
 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
 
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
 
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
 
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
 
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
 
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
 
# SOFTWARE.
21
 
#
22
 
 
23
 
XORG_GTEST_BUILD_LIBS = \
24
 
        libgtest.a \
25
 
        libgtest_main.a \
26
 
        libxorg-gtest.a \
27
 
        libxorg-gtest_main.a
28
 
 
29
 
nodist_libgtest_a_SOURCES = $(GTEST_SOURCE)/src/gtest-all.cc
30
 
libgtest_a_CPPFLAGS = $(GTEST_CPPFLAGS) $(AM_CPPFLAGS) -w
31
 
libgtest_a_CXXFLAGS = $(GTEST_CXXFLAGS) $(AM_CXXFLAGS)
32
 
 
33
 
nodist_libgtest_main_a_SOURCES = $(GTEST_SOURCE)/src/gtest_main.cc
34
 
libgtest_main_a_CPPFLAGS = $(GTEST_CPPFLAGS) $(AM_CPPFLAGS) -w
35
 
libgtest_main_a_CXXFLAGS = $(GTEST_CXXFLAGS) $(AM_CXXFLAGS)
36
 
 
37
 
nodist_libxorg_gtest_a_SOURCES = $(XORG_GTEST_SOURCE)/src/xorg-gtest-all.cpp
38
 
libxorg_gtest_a_CPPFLAGS = \
39
 
        $(XORG_GTEST_CPPFLAGS) \
40
 
        $(GTEST_CPPFLAGS) \
41
 
        $(AM_CPPFLAGS) \
42
 
        -w
43
 
libxorg_gtest_a_CXXFLAGS = \
44
 
        $(XORG_GTEST_CXXFLAGS) \
45
 
        $(GTEST_CXXFLAGS) \
46
 
        $(AM_CPPFLAGS)
47
 
 
48
 
nodist_libxorg_gtest_main_a_SOURCES = \
49
 
        $(XORG_GTEST_SOURCE)/src/xorg-gtest_main.cpp
50
 
libxorg_gtest_main_a_CPPFLAGS = \
51
 
        $(XORG_GTEST_CPPFLAGS) \
52
 
        $(GTEST_CPPFLAGS) \
53
 
        $(AM_CPPFLAGS) \
54
 
        -w
55
 
libxorg_gtest_main_a_CXXFLAGS = \
56
 
        $(XORG_GTEST_CXXFLAGS) \
57
 
        $(GTEST_CXXFLAGS) \
58
 
        $(AM_CXXFLAGS)
59
 
 
60
 
XORG_GTEST_LIBS = libxorg-gtest.a libgtest.a -lpthread $(X11_LIBS)
61
 
XORG_GTEST_MAIN_LIBS = libxorg-gtest_main.a