From cb7baab928297c95484a2245de080fc1157cec6d Mon Sep 17 00:00:00 2001 From: Jonathan Chishko Date: Mon, 1 Feb 2016 19:39:49 -0500 Subject: [PATCH] a test of uploading an empty Clion project --- .idea/.name | 1 + .idea/C++repos.iml | 26 +++++++ .idea/encodings.xml | 6 ++ .idea/misc.xml | 14 ++++ .idea/modules.xml | 8 ++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 183 ++++++++++++++++++++++++++++++++++++++++++++ CMakeLists.txt | 7 ++ main.cpp | 8 ++ 9 files changed, 259 insertions(+) create mode 100644 .idea/.name create mode 100644 .idea/C++repos.iml create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 CMakeLists.txt create mode 100644 main.cpp diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..b741bba --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +C++repos \ No newline at end of file diff --git a/.idea/C++repos.iml b/.idea/C++repos.iml new file mode 100644 index 0000000..7b4be19 --- /dev/null +++ b/.idea/C++repos.iml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..3eb495b --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..a53bf45 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..109d12e --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1454373076004 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..814cc6d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.3) +project(Assignment0) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + +set(SOURCE_FILES main.cpp) +add_executable(Assignment0 ${SOURCE_FILES}) \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..ce0b9c7 --- /dev/null +++ b/main.cpp @@ -0,0 +1,8 @@ +#include + +using namespace std; + +int main() { + cout << "Hello, World!" << endl; + return 0; +} \ No newline at end of file