diff options
author | leyla_linden <none@none> | 2011-01-06 16:43:57 -0800 |
---|---|---|
committer | leyla_linden <none@none> | 2011-01-06 16:43:57 -0800 |
commit | 523722652259d37841be2ad4ad283df4887ad372 (patch) | |
tree | 3872f4235183254667bb0452ff5faf6554c7c69c /indra/llimage/CMakeLists.txt | |
parent | f243f7e550b9dadd26d119bfeb4b215aa809997c (diff) | |
parent | d8cf705d0189ec34b1202ee50ea3e5991cf4c90f (diff) |
Merge
Diffstat (limited to 'indra/llimage/CMakeLists.txt')
-rw-r--r-- | indra/llimage/CMakeLists.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/indra/llimage/CMakeLists.txt b/indra/llimage/CMakeLists.txt index 6834267d4b..ea8c1a1107 100644 --- a/indra/llimage/CMakeLists.txt +++ b/indra/llimage/CMakeLists.txt @@ -3,12 +3,13 @@ project(llimage) include(00-Common) -include(LLAddBuildTest) include(LLCommon) include(LLImage) include(LLMath) include(LLVFS) include(ZLIB) +include(LLAddBuildTest) +include(Tut) include_directories( ${LLCOMMON_INCLUDE_DIRS} @@ -63,4 +64,12 @@ target_link_libraries(llimage ) # Add tests -#ADD_BUILD_TEST(llimageworker llimage) +if (LL_TESTS) + SET(llimage_TEST_SOURCE_FILES + llimageworker.cpp + ) + LL_ADD_PROJECT_UNIT_TESTS(llimage "${llimage_TEST_SOURCE_FILES}") +endif (LL_TESTS) + + + |