diff options
author | James Rowe <jroweboy@gmail.com> | 2020-05-08 15:09:29 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 17:09:29 -0400 |
commit | bc30a591ba7252e0c16d9c1b3c75a7073735bcae (patch) | |
tree | 2e88ab16d60c7df3e665bcf7c75c24683cb07189 /externals/find-modules/Findfmt.cmake | |
parent | 50c27d5ae1bfe6cff6f091f07d68ab7b8e394d9d (diff) |
Replace externals with Conan (#3735)
* Remove git submodules that will be loaded through conan
* Move custom Find modules to their own folder
* Use conan for downloading missing external dependencies
* CI: Change the yuzu source folder user to the user that the containers run on
* Attempt to remove dirty mingw build hack
* Install conan on the msvc build
* Only set release build type when using not using multi config generator
* Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries
* Add workaround for submodules that use legacy CMAKE variables
* Re-add USE_BUNDLED_QT on the msvc build bot
Diffstat (limited to 'externals/find-modules/Findfmt.cmake')
-rw-r--r-- | externals/find-modules/Findfmt.cmake | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/externals/find-modules/Findfmt.cmake b/externals/find-modules/Findfmt.cmake new file mode 100644 index 0000000000..e0a04a3446 --- /dev/null +++ b/externals/find-modules/Findfmt.cmake @@ -0,0 +1,43 @@ + +find_package(PkgConfig QUIET) +pkg_check_modules(PC_fmt QUIET fmt) + +find_path(fmt_INCLUDE_DIR + NAMES format.h + PATHS ${PC_fmt_INCLUDE_DIRS} ${CONAN_INCLUDE_DIRS_fmt} + PATH_SUFFIXES fmt +) + +find_library(fmt_LIBRARY + NAMES fmt + PATHS ${PC_fmt_LIBRARY_DIRS} ${CONAN_LIB_DIRS_fmt} +) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(fmt + FOUND_VAR fmt_FOUND + REQUIRED_VARS + fmt_LIBRARY + fmt_INCLUDE_DIR + VERSION_VAR fmt_VERSION +) + +if(fmt_FOUND) + set(fmt_LIBRARIES ${fmt_LIBRARY}) + set(fmt_INCLUDE_DIRS ${fmt_INCLUDE_DIR}) + set(fmt_DEFINITIONS ${PC_fmt_CFLAGS_OTHER}) +endif() + +if(fmt_FOUND AND NOT TARGET fmt::fmt) + add_library(fmt::fmt UNKNOWN IMPORTED) + set_target_properties(fmt::fmt PROPERTIES + IMPORTED_LOCATION "${fmt_LIBRARY}" + INTERFACE_COMPILE_OPTIONS "${PC_fmt_CFLAGS_OTHER}" + INTERFACE_INCLUDE_DIRECTORIES "${fmt_INCLUDE_DIR}" + ) +endif() + +mark_as_advanced( + fmt_INCLUDE_DIR + fmt_LIBRARY +) |