forked from unittest-cpp/unittest-cpp
-
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.
Add pkg config file (with help from Vicente Adolfo Bolea Sánchez)
- Loading branch information
1 parent
dab6486
commit 5e52ae7
Showing
4 changed files
with
16 additions
and
0 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 |
---|---|---|
|
@@ -41,3 +41,4 @@ Makefile.in | |
.libs | ||
*.log | ||
*.trs | ||
*.pc |
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,11 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: UnitTest++ | ||
Description: UnitTest++ is a simple C++ Unit Test Framework | ||
URL: https://github.com/unittest-cpp/unittest-cpp | ||
Version: @PACKAGE_VERSION@ | ||
Libs: -L${libdir} -lUnitTest++ | ||
Cflags: -I${includedir}/ |
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ AC_INIT([UnitTest++], [1.4.1], [[email protected]]) | |
AC_CONFIG_SRCDIR([UnitTest++/TestDetails.cpp]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_FILES([UnitTest++.pc]) | ||
|
||
AM_INIT_AUTOMAKE([foreign subdir-objects]) | ||
AM_CONDITIONAL([WINDOWS], | ||
|