2020-05-02 11:38:14 +03:00
|
|
|
# Copyright(c) 2019 spdlog authors Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
2018-02-11 20:45:56 +01:00
|
|
|
|
2023-08-30 22:20:37 +02:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
2019-05-29 00:04:36 +03:00
|
|
|
project(spdlog_examples CXX)
|
2018-02-11 20:45:56 +01:00
|
|
|
|
2019-05-29 00:04:36 +03:00
|
|
|
if(NOT TARGET spdlog)
|
2020-05-02 11:42:08 +03:00
|
|
|
# Stand-alone build
|
|
|
|
|
find_package(spdlog REQUIRED)
|
2018-02-11 20:45:56 +01:00
|
|
|
endif()
|
|
|
|
|
|
2020-05-02 11:38:14 +03:00
|
|
|
# ---------------------------------------------------------------------------------------
|
2019-05-17 23:20:30 -05:00
|
|
|
# Example of using pre-compiled library
|
2020-05-02 11:38:14 +03:00
|
|
|
# ---------------------------------------------------------------------------------------
|
2018-02-11 20:45:56 +01:00
|
|
|
add_executable(example example.cpp)
|
2023-02-12 16:34:22 +08:00
|
|
|
target_link_libraries(example PRIVATE spdlog::spdlog $<$<BOOL:${MINGW}>:ws2_32>)
|