-
Notifications
You must be signed in to change notification settings - Fork 802
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move catch.hpp header in test/; rename test/cpp as test/unit
- Loading branch information
Showing
9 changed files
with
35 additions
and
32 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
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 |
---|---|---|
@@ -1,3 +1,10 @@ | ||
SUBDIRS = gie gigs cpp | ||
|
||
EXTRA_DIST = CMakeLists.txt | ||
|
||
include_HEADERS = catch.hpp | ||
|
||
lib_LTLIBRARIES = libtestmain.la | ||
|
||
libtestmain_la_LDFLAGS = -no-undefined | ||
libtestmain_la_SOURCES = test_main.cpp | ||
|
||
SUBDIRS = . gie gigs unit |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,13 @@ | ||
EXTRA_DIST = CMakeLists.txt | ||
|
||
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/test | ||
|
||
bin_PROGRAMS = basic_test | ||
|
||
basic_test_SOURCES = basic_test.cpp | ||
basic_test_LDADD = ../../src/libproj.la ../../test/libtestmain.la | ||
|
||
basic_test-check: basic_test | ||
./basic_test | ||
|
||
check-local: basic_test-check |
File renamed without changes.