forked from blue/mlc
1
0
Fork 0

Initial import

This commit is contained in:
Blue 2023-07-15 16:44:29 -03:00
commit 59c5878b5e
3 changed files with 16 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.0)
project(mlc)
add_executable(mlc main.cpp)
install(TARGETS mlc RUNTIME DESTINATION bin)

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}

3
mlc.kdev4 Normal file
View File

@ -0,0 +1,3 @@
[Project]
Name=mlc
Manager=KDevCMakeManager