mirror of
https://github.com/transmission/transmission
synced 2024-12-21 23:32:35 +00:00
fix: do not test utils if not building utils (#4946)
Setting `-DENABLE_UTILS=0 -DENABLE_TESTS=1` causes CMake errors due to tests/utils/CMakeLists.txt referencing `$<TARGET_FILE:transmission-show>` which is undefined. Fixed by including the tests/utils/ directory only if `ENABLE_UTILS` is true.
This commit is contained in:
parent
3c9d997f47
commit
db118e7998
1 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
add_subdirectory(gtest)
|
||||
add_subdirectory(libtransmission)
|
||||
add_subdirectory(utils)
|
||||
if(ENABLE_UTILS)
|
||||
add_subdirectory(utils)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue