2020-05-02 16:38:14 +08:00
|
|
|
# Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
2018-02-12 03:45:56 +08:00
|
|
|
|
2023-08-31 04:20:37 +08:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
2023-10-01 22:42:44 +08:00
|
|
|
project(spdlog_example CXX)
|
2018-02-12 03:45:56 +08:00
|
|
|
|
2019-05-29 05:04:36 +08:00
|
|
|
if(NOT TARGET spdlog)
|
2020-05-02 16:42:08 +08:00
|
|
|
# Stand-alone build
|
|
|
|
find_package(spdlog REQUIRED)
|
2018-02-12 03:45:56 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_executable(example example.cpp)
|
2023-02-12 16:34:22 +08:00
|
|
|
target_link_libraries(example PRIVATE spdlog::spdlog $<$<BOOL:${MINGW}>:ws2_32>)
|
2023-10-01 22:42:44 +08:00
|
|
|
|
|
|
|
# copy dll to the executable folder for msvc
|
|
|
|
if(MSVC AND (SPDLOG_BUILD_SHARED OR BUILD_SHARED_LIBS))
|
2023-10-01 23:01:02 +08:00
|
|
|
add_custom_command(TARGET example POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:spdlog>
|
|
|
|
$<TARGET_FILE_DIR:example>)
|
2023-10-01 22:42:44 +08:00
|
|
|
endif()
|