vcpkg/ports/spdlog/disable-master-project-check.patch
JackBoosY ca1e2ec6b3 [spdlog]Update to 1.4.2 (#8779)
* [spdlog]Upgrade version to 1.4.2

* [spdlog]Do not remove these libraries.

* [spdlog]Fix error C4275 when use fmt.

* [spdlog]Re-fix C4275 error.

* [spdlog]Re-fix C4275 error.

* [spdlog]Disable build on uwp.

* [spdlog]Fix build with uwp.
2019-11-25 14:35:53 -08:00

20 lines
692 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 12320fb..70f611b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -33,13 +33,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
# Set SPDLOG_MASTER_PROJECT to ON if we are building spdlog
#---------------------------------------------------------------------------------------
# Check if spdlog is being used directly or via add_subdirectory, but allow overriding
-if (NOT DEFINED SPDLOG_MASTER_PROJECT)
- if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
- set(SPDLOG_MASTER_PROJECT ON)
- else()
- set(SPDLOG_MASTER_PROJECT OFF)
- endif()
-endif ()
+set(SPDLOG_MASTER_PROJECT OFF)
# build shared option
if(NOT WIN32)