forked from qt-creator/qt-creator
This way one could easily test the CMake auto-setup package manager with a conan setup. Change-Id: I4d8e7ab0b5cf84caf95d454358e1409658bd689a Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
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)
|