forked from sriki77/cpp_phone_bill
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
26 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,5 @@ boost | |
t | ||
tags | ||
*.gcno | ||
Makefile | ||
core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Picked and modified from: http://osdir.com/ml/kde-commits/2010-05/msg09988.html | ||
# Another reference point: http://code.google.com/p/createtetzone/ | ||
# Locate the Google C++ Mocking Framework. | ||
|
||
set (GTEST_FOUND FALSE) | ||
find_program(GTEST-CONFIG_EXECUTABLE NAMES gtest-config PATHS) | ||
|
||
if(GTEST-CONFIG_EXECUTABLE) | ||
exec_program(${GTEST-CONFIG_EXECUTABLE} ARGS --includedir OUTPUT_VARIABLE GOOGLETEST_INCLUDE_DIR) | ||
exec_program(${GTEST-CONFIG_EXECUTABLE} ARGS --ldflags OUTPUT_VARIABLE GOOGLETEST_LDFLAGS) | ||
exec_program(${GTEST-CONFIG_EXECUTABLE} ARGS --libs OUTPUT_VARIABLE GOOGLETEST_libs_tmp) | ||
set(GOOGLETEST_LIBRARIES "${GOOGLETEST_LDFLAGS} ${GOOGLETEST_libs_tmp}") | ||
set(GTEST_FOUND TRUE) | ||
endif() | ||
|
||
if (${GTEST_FOUND}) | ||
message (FATAL_ERROR "GTEST not found!") | ||
endif () |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.