]> git.proxmox.com Git - ceph.git/blob - ceph/src/fmt/test/add-subdirectory-test/CMakeLists.txt
import 15.2.0 Octopus source
[ceph.git] / ceph / src / fmt / test / add-subdirectory-test / CMakeLists.txt
1 cmake_minimum_required(VERSION 3.1.0)
2
3 project(fmt-test)
4
5 add_subdirectory(../.. fmt)
6
7 add_executable(library-test "main.cc")
8 target_link_libraries(library-test fmt::fmt)
9 target_compile_options(library-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
10 target_include_directories(library-test PUBLIC SYSTEM .)
11
12 if (TARGET fmt::fmt-header-only)
13 add_executable(header-only-test "main.cc")
14 target_link_libraries(header-only-test fmt::fmt-header-only)
15 target_compile_options(header-only-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
16 target_include_directories(header-only-test PUBLIC SYSTEM .)
17 endif ()