include_directories(
  ${OMNIORB4_INCLUDE_DIR}
  ${PROJECT_BINARY_DIR}/src/idl
  ${PROJECT_SOURCE_DIR}/src/
  ${PROJECT_SOURCE_DIR}/src/monitor
  ${PROJECT_SOURCE_DIR}/src/utils
)

#########
include_directories(${PROJECT_SOURCE_DIR}/src/libraries/LogToolBaseC++)

add_executable(DIETtestTool DIETtestTool.cc)
target_link_libraries(DIETtestTool
  LogForwarderUtils
  LogServiceToolBase
)
install(TARGETS DIETtestTool DESTINATION ${BIN_INSTALL_DIR})

#########
include_directories(
  ${PROJECT_SOURCE_DIR}/src/libraries/LogComponentBaseC++
)
add_executable(testComponent testComponent.cc)
target_link_libraries(testComponent
  LogForwarderUtils
  LogServiceComponentBase
)
install(TARGETS testComponent DESTINATION ${BIN_INSTALL_DIR})
##
###########
