Téléverser les fichiers vers "/"
This commit is contained in:
20
CMakeLists.txt
Normal file
20
CMakeLists.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
cmake_minimum_required(VERSION 3.25)
|
||||
project(StudentManagementSystem)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
add_executable(StudentManagementSystem
|
||||
main.cpp
|
||||
|
||||
models/User.cpp
|
||||
models/Student.cpp
|
||||
models/Professor.cpp
|
||||
models/Admin.cpp
|
||||
models/Course.cpp
|
||||
models/Grade.cpp
|
||||
|
||||
database/Database.cpp
|
||||
|
||||
services/AuthService.cpp
|
||||
services/ExportService.cpp
|
||||
)
|
||||
Reference in New Issue
Block a user