This commit is contained in:
2023-10-13 10:24:49 +08:00
parent acacbd4ce6
commit b2a45c8154
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/*

3
CMakeLists.txt Normal file
View File

@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 3.10)
project(ICPC-Management-System)
add_subdirectory(src)

5
src/CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
set(PROJECT_NAME ${CMAKE_PROJECT_NAME})
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-g -O2")
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
add_executable(ICPC main.cpp)

10
src/main.cpp Normal file
View File

@ -0,0 +1,10 @@
/**
* @brief this is the main code of ICPC-Management-System
*
* @details .
*/
#include<cstdio>
int main()
{
return 0;
}