diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-07-23 12:36:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 12:36:25 +0200 |
commit | 721461b107de7a0fd16ee41c1e35ad3c7c3087f5 (patch) | |
tree | a4a84d242c6a7c6bb79422615745beff17473370 /CMakeLists.txt | |
parent | ce99f7e24a34ea604fd8994961227424d21ce571 (diff) | |
parent | 682a009763256f25e8bc6ddcb714b2a5017d382d (diff) |
Merge pull request #14215 from wsnipex/fix-fmt
[cmake] fix building with internal fmt
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 8561f5090c..e51e0aeaa6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -284,7 +284,7 @@ endif() # main library (used for main binary and tests) add_library(lib${APP_NAME_LC} STATIC $<TARGET_OBJECTS:compileinfo>) -add_dependencies(lib${APP_NAME_LC} libcpluff ffmpeg dvdnav crossguid ${PLATFORM_GLOBAL_TARGET_DEPS}) +add_dependencies(lib${APP_NAME_LC} libcpluff ffmpeg dvdnav crossguid fmt ${PLATFORM_GLOBAL_TARGET_DEPS}) set_target_properties(lib${APP_NAME_LC} PROPERTIES PREFIX "") # Other files (IDE) |