mirror of
https://github.com/transmission/transmission
synced 2024-12-22 15:54:57 +00:00
57e6b06921
* Use imported CMake target for CURL * Use imported CMake target for fmtlib * Use imported CMake target for WideInteger * Use imported CMake target for FastFloat * Use imported CMake target for UtfCpp * Use imported CMake target for Threads * Use imported CMake target for Iconv * Use imported CMake target for crypto backend * Use imported CMake target for GTK * Use imported CMake target for Qt * Use imported CMake target for deflate * Use imported CMake target for libevent * Use imported CMake target for natpmp * Use imported CMake target for miniupnpc * Use imported CMake target for dht * Use imported CMake target for psl * Use imported CMake target for libutp * Use imported CMake target for libb64 * Use include directories from libtransmission target
10 lines
293 B
CMake
10 lines
293 B
CMake
add_library(fmt::fmt-header-only INTERFACE IMPORTED)
|
|
|
|
target_include_directories(fmt::fmt-header-only
|
|
INTERFACE
|
|
${CMAKE_CURRENT_LIST_DIR}/../third-party/fmt/include)
|
|
|
|
target_compile_definitions(fmt::fmt-header-only
|
|
INTERFACE
|
|
FMT_EXCEPTIONS=0
|
|
FMT_HEADER_ONLY=1)
|