mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-18 07:07:47 -05:00
14 lines
280 B
CMake
14 lines
280 B
CMake
|
|
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
||
|
|
|
||
|
|
project(using-patch-adder)
|
||
|
|
|
||
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
||
|
|
|
||
|
|
include("%{cpm_path}")
|
||
|
|
|
||
|
|
%{packages}
|
||
|
|
|
||
|
|
add_executable(using-patch-adder using-patch-adder.cpp)
|
||
|
|
|
||
|
|
target_link_libraries(using-patch-adder adder)
|