Initial import

This commit is contained in:
linarphy 2023-03-31 19:55:11 +02:00
commit 054426a817
3 changed files with 28 additions and 0 deletions

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

17
meson.build Normal file
View file

@ -0,0 +1,17 @@
project(
'ytsearch',
'cpp',
version : '1.0.0',
default_options : [
'buildtype=debug',
'optimization=0',
'cpp_std=c++17'
],
meson_version: '>= 0.60.0',
)
executable('ytsearch',
'main.cpp'
)

5
ytsearch.kdev4 Normal file
View file

@ -0,0 +1,5 @@
[Project]
CreatedFrom=meson.build
Manager=KDevMesonManager
Name=ytsearch