From bf2f79dc8dba651be0961eb5d701aba45209f42e Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Tue, 16 Dec 2014 13:12:48 +0000 Subject: [PATCH] Initial commit with ttrts base main.cpp --- ttrts/CMakeLists.txt | 14 ++++++++++++++ ttrts/main.cpp | 5 +++++ 2 files changed, 19 insertions(+) create mode 100644 ttrts/CMakeLists.txt create mode 100644 ttrts/main.cpp diff --git a/ttrts/CMakeLists.txt b/ttrts/CMakeLists.txt new file mode 100644 index 0000000..e1dd18b --- /dev/null +++ b/ttrts/CMakeLists.txt @@ -0,0 +1,14 @@ +# ====================== ttrts ======================= +# Project name +project( ttrts ) + +# Add the sources +set( SOURCES + main.cpp +) + +# Set to use c++11, because we're cool like that +set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11" ) + +# Add the executable +add_executable( ttrts ${SOURCES} ) \ No newline at end of file diff --git a/ttrts/main.cpp b/ttrts/main.cpp new file mode 100644 index 0000000..02fcc4c --- /dev/null +++ b/ttrts/main.cpp @@ -0,0 +1,5 @@ +// Main program entry point +int main() +{ + return 0; +}; \ No newline at end of file