Initial import

This commit is contained in:
Blue 2023-11-21 11:24:12 -03:00
commit 3a0fa57a06
Signed by: blue
GPG Key ID: 9B203B252A63EE38
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(pica)
add_executable(pica main.cpp)
install(TARGETS pica 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
pica.kdev4 Normal file
View File

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