2026-03-11 19:11:25 -07:00
|
|
|
cmake_minimum_required(VERSION 3.25)
|
|
|
|
|
project(SetecPartitionWizard VERSION 1.0.0 LANGUAGES CXX)
|
|
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
|
|
Add full implementation: core engine, UI, build fixes, and compilation
- Implement all core modules: disk I/O, partition tables, filesystem
formatting, recovery, imaging, diagnostics, security, and maintenance
- Implement all UI tabs with full widget layouts and backend integration
- Fix MSVC compilation: NOMINMAX, WIN32_LEAN_AND_MEAN, missing includes
(winioctl.h, bcrypt.h, shellapi.h, cwctype), type mismatches, and
POSIX macro conflicts
- Add Guid implementation (Types.cpp), move DiskAccessMode to Types.h
- Add CMake presets with embedded MSVC/SDK environment for Git Bash builds
- Add build scripts, key generation, icon resources, and windeployqt
- Include pre-built hwdiag library and third-party integration
2026-03-11 22:48:12 -07:00
|
|
|
# Platform defines — NOMINMAX prevents windows.h from defining min/max macros
|
|
|
|
|
add_compile_definitions(NOMINMAX WIN32_LEAN_AND_MEAN)
|
|
|
|
|
|
2026-03-11 19:11:25 -07:00
|
|
|
# Find Qt6
|
|
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Widgets Core)
|
|
|
|
|
|
|
|
|
|
# CMake helpers
|
|
|
|
|
include(cmake/CompilerWarnings.cmake)
|
|
|
|
|
include(cmake/Version.cmake)
|
Add full implementation: core engine, UI, build fixes, and compilation
- Implement all core modules: disk I/O, partition tables, filesystem
formatting, recovery, imaging, diagnostics, security, and maintenance
- Implement all UI tabs with full widget layouts and backend integration
- Fix MSVC compilation: NOMINMAX, WIN32_LEAN_AND_MEAN, missing includes
(winioctl.h, bcrypt.h, shellapi.h, cwctype), type mismatches, and
POSIX macro conflicts
- Add Guid implementation (Types.cpp), move DiskAccessMode to Types.h
- Add CMake presets with embedded MSVC/SDK environment for Git Bash builds
- Add build scripts, key generation, icon resources, and windeployqt
- Include pre-built hwdiag library and third-party integration
2026-03-11 22:48:12 -07:00
|
|
|
include(cmake/GenerateKey.cmake)
|
|
|
|
|
|
|
|
|
|
# Tests option (declared before third_party so FetchContent sees it)
|
|
|
|
|
option(SPW_BUILD_TESTS "Build tests" ON)
|
2026-03-11 19:11:25 -07:00
|
|
|
|
|
|
|
|
# Third-party dependencies
|
|
|
|
|
add_subdirectory(third_party)
|
|
|
|
|
|
|
|
|
|
# Main source tree
|
|
|
|
|
add_subdirectory(src)
|
|
|
|
|
|
|
|
|
|
# Tests
|
|
|
|
|
if(SPW_BUILD_TESTS)
|
|
|
|
|
enable_testing()
|
|
|
|
|
add_subdirectory(tests)
|
|
|
|
|
endif()
|