diff options
author | Merov Linden <merov@lindenlab.com> | 2010-11-20 16:19:53 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2010-11-20 16:19:53 -0800 |
commit | 1016284ca5ab79474292091be7c6441627125a78 (patch) | |
tree | a96e512899d4a30c0af3064cad15fe30b0d55aaf | |
parent | 610b120b8f23ba8b244f063d8b8b24ea3d9149cf (diff) |
STORM-151 : Fix viewer make so to use the USE_KDU argument
-rw-r--r-- | indra/newview/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index a197ac1b81..196419aaa6 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1674,16 +1674,16 @@ target_link_libraries(${VIEWER_BINARY_NAME} ${GOOGLE_PERFTOOLS_LIBRARIES} ) -if (LLKDU_LIBRARY) +if (USE_KDU) target_link_libraries(${VIEWER_BINARY_NAME} ${LLKDU_LIBRARIES} ${KDU_LIBRARY} ) -else (LLKDU_LIBRARY) +else (USE_KDU) target_link_libraries(${VIEWER_BINARY_NAME} ${LLIMAGEJ2COJ_LIBRARIES} ) -endif (LLKDU_LIBRARY) +endif (USE_KDU) build_version(viewer) |