From c544ad340025bf97a10bf2067d5dd5816543a06f Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sat, 28 Oct 2023 10:30:28 +0300 Subject: [PATCH] Initial import --- CMakeLists.txt | 7 +++++++ main.cpp | 6 ++++++ test.kdev4 | 3 +++ 3 files changed, 16 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.cpp create mode 100644 test.kdev4 diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d18d8d3 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(test) + +add_executable(test main.cpp) + +install(TARGETS test RUNTIME DESTINATION bin) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..8bb47f1 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main(int argc, char **argv) { + std::cout << "Hello, world!" << std::endl; + return 0; +} diff --git a/test.kdev4 b/test.kdev4 new file mode 100644 index 0000000..677320e --- /dev/null +++ b/test.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=test +Manager=KDevCMakeManager