Initial import
This commit is contained in:
commit
054426a817
3 changed files with 28 additions and 0 deletions
6
main.cpp
Normal file
6
main.cpp
Normal 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
17
meson.build
Normal 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
5
ytsearch.kdev4
Normal file
|
@ -0,0 +1,5 @@
|
|||
[Project]
|
||||
CreatedFrom=meson.build
|
||||
Manager=KDevMesonManager
|
||||
Name=ytsearch
|
||||
|
Loading…
Reference in a new issue