diff options
author | Santo Cariotti <sancn@live.com> | 2017-05-27 15:27:10 +0200 |
---|---|---|
committer | Santo Cariotti <sancn@live.com> | 2017-05-27 15:27:10 +0200 |
commit | 7c88519ee77ea85ec6bbdc0fa45f2e2b26422a57 (patch) | |
tree | 7e7a5b9cdd8572f41e0324772d2cc635069ecf5d | |
parent | 40bb7d2dc2cce378ba64bfef109da11115f1f0cb (diff) |
added travis
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | cpp/checksum.cpp | 8 |
2 files changed, 20 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bbba71c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: cpp +compiler: g++ + +before_install: +- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test +- sudo apt-get update -qq + +install: +- sudo apt-get install -qq g++-4.8 +- export CXX="g++-4.8" + +script: $(CXX) -std=c++11 -o cpp/somme cpp/somme.cpp diff --git a/cpp/checksum.cpp b/cpp/checksum.cpp new file mode 100644 index 0000000..e80398f --- /dev/null +++ b/cpp/checksum.cpp @@ -0,0 +1,8 @@ +#include <iostream> +#include <fstream> + +int main() +{ + + return 0; +} |