Files
qt-creator/tests/manual/cmakeprojectmanager/vcpkg/CMakeLists.txt
Cristian Adam 6010b096c1 CMakePM: Move specific manual tests to cmakeprojectmanager
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>
2023-10-09 14:41:54 +00:00

11 lines
218 B
CMake

cmake_minimum_required(VERSION 3.15)
project(vcpkg-libfmt)
find_package(fmt CONFIG REQUIRED)
add_executable(vcpkg-libfmt main.cpp)
target_link_libraries(vcpkg-libfmt PRIVATE fmt::fmt)
install(TARGETS vcpkg-libfmt)