mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-15 21:30:08 +08:00
10 lines
218 B
CMake
10 lines
218 B
CMake
|
cmake_minimum_required(VERSION 3.29)
|
||
|
project(crashpad-test CXX)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 11)
|
||
|
|
||
|
add_executable(main main.cpp)
|
||
|
|
||
|
find_package(crashpad CONFIG REQUIRED)
|
||
|
target_link_libraries(main PRIVATE crashpad::crashpad)
|