Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 2547412

Browse files
committed
small fixes
1 parent 69e038b commit 2547412

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
cmake_minimum_required (VERSION 2.8)
1+
cmake_minimum_required (VERSION 3.1)
22
project (unit_test_example)
33

44
# Use C++11 : cmake >= 3.1
55
set(CMAKE_CXX_STANDARD 11)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)
77

8-
# Use C++11 : cmake <= 3.1
9-
add_definitions(-std=c++11)
10-
118
##############
129
# External Library
1310
##############

travis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

3-
rm -rf build/*
3+
rm -rf build/
44
mkdir build
55
cd build
66
cmake ..
7-
make
7+
make
88
./unit_test % unit test

0 commit comments

Comments
 (0)