include_directories(
    ${CMAKE_CURRENT_SOURCE_DIR}/..
    ${CMAKE_CURRENT_BINARY_DIR}
)

set(MIGRATIONTEST_DEPENDENCIES
    migration_static
    ${COMMON_DEPENDENCIES}
    ${QT_QTTEST_LIBRARY}
    ${MIGRATION_LIBRARIES}
)

qt4_automoc(migrationtest.cpp)
add_executable(migrationtest migrationtest.cpp)
target_link_libraries(migrationtest ${MIGRATIONTEST_DEPENDENCIES})

qt4_automoc(migrationscenariotest.cpp)
add_executable(migrationscenariotest migrationscenariotest.cpp)
target_link_libraries(migrationscenariotest ${MIGRATIONTEST_DEPENDENCIES})

qt4_automoc(exchangeimaptest.cpp)
add_executable(exchangeimaptest exchangeimaptest.cpp)
target_link_libraries(exchangeimaptest ${MIGRATIONTEST_DEPENDENCIES})
