mirror of
https://github.com/transmission/transmission.git
synced 2025-12-19 18:08:31 +00:00
* Reformat CMake code
* Bump minimum CMake version to 3.12
* Add target sources separately via `target_source()`
* Make `tr_win32_app_info()` add target sources on its own
* Don't use `include_directories()`
* Don't use `add_definitions()`
* Limit use of `add_compile_options()`
* Move VDKQueue target declaration to a subdirectory
* Add `tr_disable_source_files_compile()` helper
* Add `tr_target_glib_resources()` helper
* Add `tr_gettext_msgfmt()` helper
* Enable AUTOUIC for Qt client
* Enable AUTORCC for Qt client
* Remove AUTO{MOC,RCC,UIC} source group overrides
* Add `tr_target_idl_files()` helper
* Move source group setup to `tr_qt_add_translation()`
* Add `tr_target_xib_files()` helper
* Prefer `target_sources()` to intermediate variables
* Use explicit visibility versions of `target_*()` commands
* Prefer genexes to conditions in `target_*()` commands
* Add `tr_allow_compile_if()` helper
* Leave only top-level `project()`, remove the rest
* Minor fixups
* Fixup Mac QL plugin install
* Fixup IDE target folders and source groups
19 lines
958 B
CMake
19 lines
958 B
CMake
function(AddShowTest name file_basename)
|
|
add_test(
|
|
NAME ${name}
|
|
COMMAND
|
|
${CMAKE_COMMAND}
|
|
-D transmission_show:string=$<TARGET_FILE:transmission-show>
|
|
-D torrent_file:string=assets/${file_basename}.torrent
|
|
-D reference_file:string=${CMAKE_CURRENT_SOURCE_DIR}/assets/${file_basename}.show
|
|
-P "${CMAKE_CURRENT_SOURCE_DIR}/run_transmission_show.cmake"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
|
endfunction()
|
|
|
|
# disabled AddShowTest(transmission-show-bittorrent-v2 bittorrent-v2-test)
|
|
addshowtest(transmission-show-bittorrent-v2-hybrid-test bittorrent-v2-hybrid-test)
|
|
addshowtest(transmission-show-inner-sanctum Inner_Sanctum_movie_archive)
|
|
addshowtest(transmission-show-thor Thor_and_the_Amazon_Women.avi)
|
|
addshowtest(transmission-show-ubuntu ubuntu-20.04.3-desktop-amd64.iso)
|
|
addshowtest(transmission-show-ubuntu-hybrid hybrid-single-ubuntu-20.04.3-desktop-amd64.iso)
|