[Gtest][Fixed build issues for the build failures of dependent modules]
[platform/upstream/gtest.git] / codegear / gtest_link.cc
1 // Copyright 2009, Google Inc.\r
2 // All rights reserved.\r
3 //\r
4 // Redistribution and use in source and binary forms, with or without\r
5 // modification, are permitted provided that the following conditions are\r
6 // met:\r
7 //\r
8 //     * Redistributions of source code must retain the above copyright\r
9 // notice, this list of conditions and the following disclaimer.\r
10 //     * Redistributions in binary form must reproduce the above\r
11 // copyright notice, this list of conditions and the following disclaimer\r
12 // in the documentation and/or other materials provided with the\r
13 // distribution.\r
14 //     * Neither the name of Google Inc. nor the names of its\r
15 // contributors may be used to endorse or promote products derived from\r
16 // this software without specific prior written permission.\r
17 //\r
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
29 //\r
30 // Author: Josh Kelley (joshkel@gmail.com)\r
31 //\r
32 // Google C++ Testing Framework (Google Test)\r
33 //\r
34 // Links gtest.lib and gtest_main.lib into the current project in C++Builder.\r
35 // This means that these libraries can't be renamed, but it's the only way to\r
36 // ensure that Debug versus Release test builds are linked against the\r
37 // appropriate Debug or Release build of the libraries.\r
38 \r
39 #pragma link "gtest.lib"\r
40 #pragma link "gtest_main.lib"\r