This commit is contained in:
2026-01-17 10:18:37 +03:00
commit eb4b3557fa
15 changed files with 132 additions and 0 deletions

40
CMakeLists.txt Normal file
View File

@@ -0,0 +1,40 @@
cmake_minimum_required(VERSION 3.10)
project(LicenseManager)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
find_package(Qt5 COMPONENTS
Core
Gui
Widgets
REQUIRED
)
file(GLOB
SOURCES
"src/*"
"src/MainWidget/*"
"src/LicenseModel/*"
)
add_executable(
${CMAKE_PROJECT_NAME}
${SOURCES}
)
target_include_directories(
${CMAKE_PROJECT_NAME}
PUBLIC
"./src/"
)
target_link_libraries(
${CMAKE_PROJECT_NAME}
Qt5::Core
Qt5::Gui
Qt5::Widgets
)