Initial import

This commit is contained in:
Karl-Wilfried Zimmer 2024-07-07 13:06:04 +02:00
commit d72cda2619
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(vector)
add_executable(vector main.cpp)
install(TARGETS vector RUNTIME DESTINATION bin)

3
Vector.kdev4 Normal file
View File

@ -0,0 +1,3 @@
[Project]
Name=Vector
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;
}