This commit is contained in:
2024-04-18 17:40:15 +08:00
commit 587fc92049
4 changed files with 17 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
cmake-build-*
.idea

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.28)
project(Transmission)
set(CMAKE_CXX_STANDARD 20)
add_executable(Transmission main.cpp)

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Transmission
网络传输库

6
main.cpp Normal file
View File

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