2022-11-28 21:45:52 +03:00
|
|
|
cmake_minimum_required(VERSION 3.8...3.25)
|
2016-02-03 13:20:19 +03:00
|
|
|
|
2021-05-08 02:42:02 +03:00
|
|
|
project(fmt-test CXX)
|
2016-02-03 13:20:19 +03:00
|
|
|
|
2016-04-24 17:45:13 +03:00
|
|
|
add_subdirectory(../.. fmt)
|
2016-02-03 13:20:19 +03:00
|
|
|
|
2021-05-08 02:42:02 +03:00
|
|
|
add_executable(library-test main.cc)
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(library-test PUBLIC SYSTEM .)
|
2021-05-08 02:42:02 +03:00
|
|
|
target_compile_options(library-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
target_link_libraries(library-test fmt::fmt)
|
2016-02-03 13:20:19 +03:00
|
|
|
|
2017-05-23 18:01:45 +03:00
|
|
|
if (TARGET fmt::fmt-header-only)
|
2021-05-08 02:42:02 +03:00
|
|
|
add_executable(header-only-test main.cc)
|
2018-06-06 16:57:59 +03:00
|
|
|
target_include_directories(header-only-test PUBLIC SYSTEM .)
|
2021-05-08 02:42:02 +03:00
|
|
|
target_compile_options(header-only-test PRIVATE ${PEDANTIC_COMPILE_FLAGS})
|
|
|
|
target_link_libraries(header-only-test fmt::fmt-header-only)
|
2016-03-18 17:59:04 +03:00
|
|
|
endif ()
|