mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-16 22:27:41 -05:00
16 lines
332 B
CMake
16 lines
332 B
CMake
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
|
|
|
project(CPMFmtExample)
|
|
|
|
# ---- Dependencies ----
|
|
|
|
include(../../cmake/CPM.cmake)
|
|
|
|
CPMAddPackage("gh:fmtlib/fmt#7.1.3")
|
|
|
|
# ---- Executable ----
|
|
|
|
add_executable(CPMFmtExample main.cpp)
|
|
target_compile_features(CPMFmtExample PRIVATE cxx_std_17)
|
|
target_link_libraries(CPMFmtExample fmt)
|