From 490a9ad3e3202ab99c174e43f8d21aeab9f5157c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com> Date: Sat, 10 Mar 2018 20:44:54 +0100 Subject: [PATCH] Let's pretend to do something --- .gitignore | 1 + CMakeLists.txt | 3 +++ main.cpp | 7 +++++++ 3 files changed, 11 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore index b25c15b81..717b626f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *~ +/build diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..bdb43ba5e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +cmake_minimum_required (VERSION 2.6) +project (Pastis) +add_executable(pastis main.cpp) diff --git a/main.cpp b/main.cpp new file mode 100644 index 000000000..7186e0b01 --- /dev/null +++ b/main.cpp @@ -0,0 +1,7 @@ +#include <iostream> + +int main(int argc, char **argv) +{ + std::cout << "It's pastis time!\n"; + return 0; +} -- GitLab