mirror of
https://github.com/fmtlib/fmt.git
synced 2026-08-03 20:14:20 +02:00
24 lines
849 B
CMake
24 lines
849 B
CMake
cmake_minimum_required(VERSION 3.8...3.25)
|
|
|
|
project(fmt-test CXX)
|
|
|
|
add_subdirectory(../.. fmt)
|
|
|
|
add_executable(library-test main.cc)
|
|
target_include_directories(library-test PUBLIC SYSTEM .)
|
|
target_compile_options(library-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
target_link_libraries(library-test fmt::fmt)
|
|
|
|
if (TARGET fmt::fmt-header-only)
|
|
add_executable(header-only-test main.cc)
|
|
target_include_directories(header-only-test PUBLIC SYSTEM .)
|
|
target_compile_options(header-only-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
target_link_libraries(header-only-test fmt::fmt-header-only)
|
|
endif ()
|
|
|
|
# Test that a target depending on fmt can itself be exported (#4806).
|
|
add_library(export-test INTERFACE)
|
|
target_link_libraries(export-test INTERFACE fmt::fmt)
|
|
export(TARGETS export-test
|
|
FILE ${CMAKE_CURRENT_BINARY_DIR}/export-test-targets.cmake)
|