Sha256: a7d4dc189251d9074bacbba280ce0c08e7b65a90667eb684fa61b56be9b6da87
Contents?: true
Size: 1.59 KB
Versions: 11
Compression:
Stored size: 1.59 KB
Contents
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} ) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/testconfig.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/testconfig.h) ########### next target ############### include_directories(${CMAKE_CURRENT_SOURCE_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/../rpp ${QT_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR}) set(parsertest_SRCS test_parser.cpp) QT4_GENERATE_MOC(${parsertest_SRCS} test_parser.moc) add_executable(parsertest ${parsertest_SRCS} test_parser.moc) if (WIN32) # Realign the stack, for compatibility with an older ABI. set_target_properties (parsertest PROPERTIES COMPILE_FLAGS -mstackrealign) endif (WIN32) target_link_libraries(parsertest ${QT_QTCORE_LIBRARY} ${QT_QTTEST_LIBRARY} cppparser) ########### next target ############### set(generatortest_SRCS test_generator.cpp) QT4_GENERATE_MOC(${generatortest_SRCS} test_generator.moc) add_executable(generatortest ${generatortest_SRCS} test_generator.moc) if (WIN32) # Realign the stack, for compatibility with an older ABI. set_target_properties (generatortest PROPERTIES COMPILE_FLAGS -mstackrealign) endif (WIN32) target_link_libraries(generatortest ${QT_QTCORE_LIBRARY} ${QT_QTTEST_LIBRARY} cppparser) ########### next target ############### set(pooltest_SRCS test_pool.cpp) QT4_GENERATE_MOC(test_pool.h test_pool.moc) add_executable(pooltest ${pooltest_SRCS} test_pool.moc) if (WIN32) # Realign the stack, for compatibility with an older ABI. set_target_properties (pooltest PROPERTIES COMPILE_FLAGS -mstackrealign) endif (WIN32) target_link_libraries(pooltest ${QT_QTCORE_LIBRARY} ${QT_QTTEST_LIBRARY} cppparser)
Version data entries
11 entries across 11 versions & 2 rubygems