X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=qjson%2Ftests%2Fqobjecthelper%2FCMakeLists.txt;fp=qjson%2Ftests%2Fqobjecthelper%2FCMakeLists.txt;h=0000000000000000000000000000000000000000;hb=54cb1857146acd8ada989ccbc85540793f654d69;hp=a72c86300656df4dd1b62f3aa82e4dadf551f684;hpb=ffe49fc9cc4e16f1f300e7e2468036d9dd6529b7;p=buliscores diff --git a/qjson/tests/qobjecthelper/CMakeLists.txt b/qjson/tests/qobjecthelper/CMakeLists.txt deleted file mode 100644 index a72c863..0000000 --- a/qjson/tests/qobjecthelper/CMakeLists.txt +++ /dev/null @@ -1,48 +0,0 @@ -##### Probably don't want to edit below this line ##### - -SET( QT_USE_QTTEST TRUE ) - -# Use it -INCLUDE( ${QT_USE_FILE} ) - -INCLUDE(AddFileDependencies) - -# Include the library include directories, and the current build directory (moc) -INCLUDE_DIRECTORIES( - ../../src - ${CMAKE_CURRENT_BINARY_DIR} -) - -SET (qjson_test_support_SRCS person.cpp) -QT4_WRAP_CPP(qjson_test_support_MOC_SRCS person.h) - -ADD_LIBRARY (qjson_test_support STATIC ${qjson_test_support_SRCS} - ${qjson_test_support_MOC_SRCS}) - -SET( UNIT_TESTS - testqobjecthelper -) - -# Build the tests -FOREACH(test ${UNIT_TESTS}) - MESSAGE(STATUS "Building ${test}") - QT4_WRAP_CPP(MOC_SOURCE ${test}.cpp) - ADD_EXECUTABLE( - ${test} - ${test}.cpp - ) - - ADD_FILE_DEPENDENCIES(${test}.cpp ${MOC_SOURCE}) - TARGET_LINK_LIBRARIES( - ${test} - ${QT_LIBRARIES} - qjson - qjson_test_support - ) - if (QJSON_TEST_OUTPUT STREQUAL "xml") - # produce XML output - add_test( ${test} ${test} -xml -o ${test}.tml ) - else (QJSON_TEST_OUTPUT STREQUAL "xml") - add_test( ${test} ${test} ) - endif (QJSON_TEST_OUTPUT STREQUAL "xml") -ENDFOREACH()