forked from qt-creator/qt-creator
Previously this folder didn't exist, but now it's better to have them all in one place. Change-Id: Ib8a2f24157a34e817e653929d01dfc9675f1c019 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
11 lines
211 B
CMake
11 lines
211 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(conan-libfmt)
|
|
|
|
find_package(fmt REQUIRED)
|
|
|
|
add_executable(conan-libfmt main.cpp)
|
|
target_link_libraries(conan-libfmt PRIVATE fmt::fmt)
|
|
|
|
install(TARGETS conan-libfmt)
|