Files
update-client/Bootstrap/CMakeLists.txt
T

7 lines
241 B
CMake
Raw Normal View History

2026-07-09 09:17:30 +00:00
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)