The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
cmake_minimum_required(VERSION 2.6)
project(target_test)
enable_language(CXX)
find_package(Qt4)
include(${QT_USE_FILE})
include_directories(${QT_INCLUDES})


# # set(test NONE)
# message(STATUS "Target test: ${test}")
# add_definitions(-DTEST_${test})
add_executable( target_test test.cpp )
target_link_libraries( target_test ${QT_LIBRARIES} )