This commit is contained in:
2025-01-20 20:08:42 +00:00
parent feea16ef0c
commit 851c5e2aed
9 changed files with 40 additions and 2 deletions

4
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,4 @@
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
project(cliant VERSION 0.1)
add_executable( ${CMAKE_PROJECT_NAME} main.cpp)

4
src/main.cpp Normal file
View File

@@ -0,0 +1,4 @@
int int main (int argc, char *argv[]) {
return 0;
}