changeset 57:46de84e1c107

hello world
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Nov 2016 15:23:52 +0100
parents 24eb034d0322
children 67ed29980999
files HelloWorld/CMakeLists.txt HelloWorld/main.cpp
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HelloWorld/CMakeLists.txt	Wed Nov 16 15:23:52 2016 +0100
@@ -0,0 +1,4 @@
+cmake_minimum_required (VERSION 2.8.11)
+project(HelloWorld)
+
+add_executable(HelloWorld main.cpp)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HelloWorld/main.cpp	Wed Nov 16 15:23:52 2016 +0100
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+  printf("Hello world!\n");
+  return 0;
+}