diff options
author | Rye <rye@lindenlab.com> | 2024-10-30 21:05:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 21:05:30 -0400 |
commit | fcd8b53a573800f11bf0c5585acf89811e731740 (patch) | |
tree | 7c15c188b41efb1a6221da2da5eba92c4d7245d1 /indra/llkdu/CMakeLists.txt | |
parent | 6856c475e89a52568dcabfb730f42bff6d477203 (diff) | |
parent | a09f3335221a8b43eaabd289355269cd38fc5c5f (diff) |
Merge pull request #2961 from secondlife/rye/kdu8
Update KDU to 8.4.1
Diffstat (limited to 'indra/llkdu/CMakeLists.txt')
-rw-r--r-- | indra/llkdu/CMakeLists.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/indra/llkdu/CMakeLists.txt b/indra/llkdu/CMakeLists.txt index 7cd9f5eb24..230803a630 100644 --- a/indra/llkdu/CMakeLists.txt +++ b/indra/llkdu/CMakeLists.txt @@ -42,10 +42,7 @@ if (USE_KDU) target_include_directories( llkdu INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) # Add tests - # ND: llkdu tests are very strange as they include stubs for KDU classes/methods - # if not having access to the right KDU version this test will fail to compile, incidentally I do not - # have access to a matching version of KDU and thus cannot get this tests to compile - if (LL_TESTS_KDU) + if (LL_TESTS) include(LLAddBuildTest) include(Tut) SET(llkdu_TEST_SOURCE_FILES @@ -62,6 +59,6 @@ if (USE_KDU) set_property( SOURCE ${llkdu_TEST_SOURCE_FILES} PROPERTY LL_TEST_ADDITIONAL_INCLUDE_DIRS ${llimage_include_dir}) LL_ADD_PROJECT_UNIT_TESTS(llkdu "${llkdu_TEST_SOURCE_FILES}") - endif (LL_TESTS_KDU) + endif (LL_TESTS) endif (USE_KDU) |