Initial import

This commit is contained in:
Blue 2023-04-11 19:05:33 -03:00
parent 71c569b989
commit 65bd8192d4
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(birdbadge)
add_executable(birdbadge main.cpp)
install(TARGETS birdbadge RUNTIME DESTINATION bin)

3
birdbadge.kdev4 Normal file
View File

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

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;
}