mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-22 04:07:49 -05:00
12 lines
195 B
CMake
12 lines
195 B
CMake
|
|
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
||
|
|
|
||
|
|
project(using-adder)
|
||
|
|
|
||
|
|
include("%{cpm_path}")
|
||
|
|
|
||
|
|
%{packages}
|
||
|
|
|
||
|
|
add_executable(using-adder using-adder.cpp)
|
||
|
|
|
||
|
|
target_link_libraries(using-adder adder)
|