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