cmake_minimum_required (VERSION 2.6)
project(TestPanel)

find_package( Wt REQUIRED )

#include_directories (${Wt_INCLUDE_DIR} )

add_executable (test_wt
  test_wt.cpp
  testPanel.cpp
  externalpanel.cpp
  internalpanel.cpp
)

target_link_libraries(test_wt
  ${Wt_DEBUG_LIBRARY}
  ${Wt_HTTP_DEBUG_LIBRARY}
)
