commit 59c5878b5e3d6fdad08279bc6efd71b1c7db251d Author: blue Date: Sat Jul 15 16:44:29 2023 -0300 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..4c2cb90 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(mlc) + +add_executable(mlc main.cpp) + +install(TARGETS mlc 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/mlc.kdev4 b/mlc.kdev4 new file mode 100644 index 0000000..4680c1f --- /dev/null +++ b/mlc.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=mlc +Manager=KDevCMakeManager