Skip to content

Commit ed6dd71

Browse files
committedJun 3, 2017
no longer forces g++ on Makefiles, adds test targets, treat warnings as errors
1 parent 5a30fa0 commit ed6dd71

File tree

83 files changed

+544
-152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+544
-152
lines changed
 

‎.travis.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
language: cpp
22

3-
dist: trusty
3+
matrix:
4+
include:
45

5-
git:
6-
depth: 3
6+
# build and run all tests on Linux (compile with g++)
7+
- os: linux
8+
dist: trusty
9+
compiler: gcc
10+
11+
# build and run all tests on Linux (compile with clang++)
12+
- os: linux
13+
dist: trusty
14+
compiler: clang
715

816
script:
917
- ./run-tests
1018

19+
git:
20+
depth: 3
21+
1122
notifications:
1223
email:
1324
recipients:

‎chapter01/1.01/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
CXXFLAGS := -g -std=c++11 -Wall -Wextra -Werror
2+
13
all: solve
24

35
solve: solve.cpp
4-
g++ -g -std=c++11 solve.cpp -o solve -Wall -Wextra
6+
$(CXX) $(CXXFLAGS) solve.cpp -o solve
7+
8+
test: solve
9+
./solve
510

611
clean:
712
rm -f solve

0 commit comments

Comments
 (0)