mirror of
https://github.com/transmission/transmission
synced 2024-12-25 17:17:31 +00:00
6e8f9f3ff0
* feat: add tr_strbuf class for building tmp strings Based on fmt::basic_memory_buf, this is a growable string buffer that has an initial size that's large enough to build most filenames or URLs without needing heap allocations. Adds a couple of extra helpers such as a `c_str()` method to make dealing with old zero-terminated string APIs easier.
28 lines
723 B
CMake
28 lines
723 B
CMake
project(trutils)
|
|
|
|
add_compile_options(${CXX_WARNING_FLAGS})
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}
|
|
)
|
|
include_directories(
|
|
SYSTEM
|
|
${EVENT2_INCLUDE_DIRS}
|
|
${CURL_INCLUDE_DIRS}
|
|
)
|
|
|
|
foreach(P create edit remote show)
|
|
tr_win32_app_info(${PROJECT_NAME}_${P}_WIN32_RC_FILE
|
|
"Transmission Utility ('${P}')"
|
|
"${TR_NAME}-${P}"
|
|
"${TR_NAME}-${P}.exe")
|
|
|
|
add_executable(${TR_NAME}-${P} ${P}.cc ${${PROJECT_NAME}_${P}_WIN32_RC_FILE})
|
|
target_link_libraries(${TR_NAME}-${P} ${TR_NAME})
|
|
|
|
install(TARGETS ${TR_NAME}-${P} DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
|
|
if(INSTALL_DOC)
|
|
install(FILES ${TR_NAME}-${P}.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
|
endif()
|
|
endforeach()
|