##=========================================================================
## 
##   Copyright (c) Kitware, Inc.
##   All rights reserved.
##   See Copyright.txt or http://www.kitware.com/VolViewCopyright.htm for details.
## 
##      This software is distributed WITHOUT ANY WARRANTY; without even
##      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
##      PURPOSE.  See the above copyright notice for more information.
## 
##=========================================================================
SET(TESTS 
  Memory
  Lib
#  RemoteProcess
  )

FOREACH(TEST ${TESTS})
  SET(EXE_NAME KWCommonTest${TEST})
  ADD_EXECUTABLE(${EXE_NAME} Test${TEST}.cxx)
  TARGET_LINK_LIBRARIES(${EXE_NAME} ${KWCommon_LIBRARIES})
  ADD_TEST(KWCommon-${TEST} ${EXECUTABLE_OUTPUT_PATH}/${EXE_NAME})
ENDFOREACH(TEST)
