diff options
author | Wolfgang Schupp <w.schupp@a1.net> | 2021-12-15 07:02:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 07:02:13 +0100 |
commit | 5dad2af01008c1ea9c7e601b869fe977bd538247 (patch) | |
tree | b11c8bfb73c922a1fd3d1d0a30c986047b270fe4 /CMakeLists.txt | |
parent | 2fa799fc5d6a89282c9e5a0924465b6f2f7c13ca (diff) | |
parent | a23e84934a5dff03c93c74f5a64d67fdece6cdd5 (diff) |
Merge pull request #20674 from wsnipex/spdlog
[cmake] fix building with internal spdlog after #20637
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e4dff92e6..825718355a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -304,7 +304,7 @@ elseif(CORE_SYSTEM_NAME STREQUAL android) ${CORE_BUILD_DIR}/DllPaths_generated_android.h @ONLY) endif() -set(GLOBAL_TARGET_DEPS ffmpeg dvdnav crossguid fmt Spdlog::Spdlog fstrcmp flatbuffers ${PLATFORM_GLOBAL_TARGET_DEPS}) +set(GLOBAL_TARGET_DEPS ffmpeg dvdnav crossguid fmt spdlog fstrcmp flatbuffers ${PLATFORM_GLOBAL_TARGET_DEPS}) # main library (used for main binary and tests) add_library(lib${APP_NAME_LC} STATIC $<TARGET_OBJECTS:compileinfo>) |