7 lines
247 B
CMake
7 lines
247 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)
|