From 3c0b55af9f272b14bfa18f34e715de71ee1106ed Mon Sep 17 00:00:00 2001 From: Elena Demikhovsky Date: Tue, 30 Dec 2014 10:13:38 +0000 Subject: [PATCH] v git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224983 91177308-0d34-0410-b5e6-96231b3b80d8 --- opt/CMakeLists.txt | 4 ++++ opt/main.cpp | 6 ++++++ opt/opt.kdev4 | 4 ++++ 3 files changed, 14 insertions(+) create mode 100644 opt/CMakeLists.txt create mode 100644 opt/main.cpp create mode 100644 opt/opt.kdev4 diff --git a/opt/CMakeLists.txt b/opt/CMakeLists.txt new file mode 100644 index 00000000000..bc2a70fb7e4 --- /dev/null +++ b/opt/CMakeLists.txt @@ -0,0 +1,4 @@ +project(opt) + +add_executable(opt main.cpp) + diff --git a/opt/main.cpp b/opt/main.cpp new file mode 100644 index 00000000000..8bb47f1c1b0 --- /dev/null +++ b/opt/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char **argv) { + std::cout << "Hello, world!" << std::endl; + return 0; +} diff --git a/opt/opt.kdev4 b/opt/opt.kdev4 new file mode 100644 index 00000000000..11ef8129f49 --- /dev/null +++ b/opt/opt.kdev4 @@ -0,0 +1,4 @@ +[Project] +Name=opt +Manager=KDevCMakeManager +VersionControl=kdevsubversion -- 2.34.1