include_directories("${CMAKE_CURRENT_BINARY_DIR}" ..) # test-sqlobjects set(TESTSQLOBJECTS_SRC ../sqlitedb.cpp ../sqlitetablemodel.cpp ../sqlitetypes.cpp ../csvparser.cpp ../grammar/Sqlite3Lexer.cpp ../grammar/Sqlite3Parser.cpp ../Settings.cpp testsqlobjects.cpp ) set(TESTSQLOBJECTS_HDR ../grammar/sqlite3TokenTypes.hpp ../grammar/Sqlite3Lexer.hpp ../grammar/Sqlite3Parser.hpp ../sqlitetypes.h ) set(TESTSQLOBJECTS_MOC_HDR ../sqlitedb.h ../sqlitetablemodel.h ../Settings.h testsqlobjects.h ) if(sqlcipher) list(APPEND TESTSQLOBJECTS_SRC ../CipherDialog.cpp) list(APPEND TESTSQLOBJECTS_FORMS ../CipherDialog.ui) list(APPEND TESTSQLOBJECTS_MOC_HDR ../CipherDialog.h) endif() QT5_WRAP_UI(TESTSQLOBJECTS_FORM_HDR ${TESTSQLOBJECTS_FORMS}) add_executable(test-sqlobjects ${TESTSQLOBJECTS_MOC} ${TESTSQLOBJECTS_HDR} ${TESTSQLOBJECTS_SRC} ${TESTSQLOBJECTS_FORM_HDR}) qt5_use_modules(test-sqlobjects Test Widgets Gui) set(QT_LIBRARIES "") if(NOT ANTLR2_FOUND) add_dependencies(test-sqlobjects antlr) endif() target_link_libraries(test-sqlobjects ${QT_LIBRARIES} ${LIBSQLITE}) if(ANTLR2_FOUND) target_link_libraries(test-sqlobjects ${ANTLR2_LIBRARIES}) else() target_link_libraries(test-sqlobjects antlr) endif() link_directories("${CMAKE_CURRENT_BINARY_DIR}/${QSCINTILLA_DIR}") add_dependencies(test-sqlobjects qscintilla2_qt5) target_link_libraries(test-sqlobjects qscintilla2_qt5) add_test(test-sqlobjects test-sqlobjects) # test-import set(TESTIMPORT_SRC ../csvparser.cpp TestImport.cpp ) set(TESTIMPORT_MOC_HDR TestImport.h ) add_executable(test-import ${TESTIMPORT_MOC} ${TESTIMPORT_SRC}) qt5_use_modules(test-import Test Core) set(QT_LIBRARIES "") target_link_libraries(test-import ${QT_LIBRARIES}) add_test(test-import test-import) # test regex set(TESTREGEX_SRC ../sqlitedb.cpp ../sqlitetablemodel.cpp ../sqlitetypes.cpp ../grammar/Sqlite3Lexer.cpp ../grammar/Sqlite3Parser.cpp ../Settings.cpp TestRegex.cpp ) set(TESTREGEX_HDR ../grammar/sqlite3TokenTypes.hpp ../grammar/Sqlite3Lexer.hpp ../grammar/Sqlite3Parser.hpp ../sqlitetypes.h ) set(TESTREGEX_MOC_HDR ../sqlitedb.h ../sqlitetablemodel.h ../Settings.h TestRegex.h ) if(sqlcipher) list(APPEND TESTREGEX_SRC ../CipherDialog.cpp) list(APPEND TESTREGEX_MOC_HDR ../CipherDialog.h) endif() add_executable(test-regex ${TESTREGEX_MOC} ${TESTREGEX_HDR} ${TESTREGEX_SRC}) qt5_use_modules(test-regex Test Core Gui Widgets) set(QT_LIBRARIES "") if(NOT ANTLR2_FOUND) add_dependencies(test-regex antlr) endif() target_link_libraries(test-regex ${QT_LIBRARIES} ${LIBSQLITE}) if(ANTLR2_FOUND) target_link_libraries(test-regex ${ANTLR2_LIBRARIES}) else() target_link_libraries(test-regex antlr) endif() link_directories("${CMAKE_CURRENT_BINARY_DIR}/${QSCINTILLA_DIR}") add_dependencies(test-regex qscintilla2_qt5) target_link_libraries(test-regex qscintilla2_qt5) add_test(test-regex test-regex)