Files
update-system/client/Bootstrap/CMakeLists.txt
T
2026-07-01 03:32:41 +00:00

7 lines
241 B
CMake

project(Bootstrap LANGUAGES CXX)
add_executable(Bootstrap WIN32 main.cpp)
target_compile_features(Bootstrap PRIVATE cxx_std_17)
target_compile_definitions(Bootstrap PRIVATE UNICODE _UNICODE)
target_link_libraries(Bootstrap PRIVATE shell32)