Initial project scaffold for Setec Partition Wizard
C++17/Qt6 application for disk recovery, repair, flashing, formatting, and USB security key creation on Windows. Includes CMake build system, tabbed UI shell with 6 main tabs, core type system with Result<T> monadic error handling, admin elevation, and dark Catppuccin theme.
This commit is contained in:
9
cmake/FindWMI.cmake
Normal file
9
cmake/FindWMI.cmake
Normal file
@@ -0,0 +1,9 @@
|
||||
# FindWMI.cmake - Locate WMI libraries on Windows
|
||||
# Sets WMI_FOUND, WMI_LIBRARIES
|
||||
|
||||
if(WIN32)
|
||||
set(WMI_LIBRARIES wbemuuid ole32 oleaut32 setupapi)
|
||||
set(WMI_FOUND TRUE)
|
||||
else()
|
||||
set(WMI_FOUND FALSE)
|
||||
endif()
|
||||
Reference in New Issue
Block a user