1
0
Fork 0
mirror of https://gitlab.com/niansa/llama_any_server.git synced 2025-03-06 20:53:35 +01:00

Initial commit

This commit is contained in:
niansa 2023-04-03 16:30:23 +02:00
commit 1e520b3182
3 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
CMakeLists.txt.user*

11
CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.5)
project(llama_any_server LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_executable(llama_any_server main.cpp)
install(TARGETS llama_any_server
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})

9
main.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}