0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 12:22:16 +02:00

Move modeltest to the front so it's always passed to the linker before Qt.

This commit is contained in:
Felix Geyer 2012-07-01 21:29:54 +02:00
parent 85031658d1
commit fd6546c5df

View File

@ -120,10 +120,10 @@ add_unit_test(NAME testkeepass2writer SOURCES TestKeePass2Writer.cpp MOCS TestKe
LIBS ${TEST_LIBRARIES})
add_unit_test(NAME testgroupmodel SOURCES TestGroupModel.cpp MOCS TestGroupModel.h
LIBS ${TEST_LIBRARIES} modeltest)
LIBS modeltest ${TEST_LIBRARIES})
add_unit_test(NAME testentrymodel SOURCES TestEntryModel.cpp MOCS TestEntryModel.h
LIBS ${TEST_LIBRARIES} modeltest)
LIBS modeltest ${TEST_LIBRARIES})
add_unit_test(NAME testcryptohash SOURCES TestCryptoHash.cpp MOCS TestCryptoHash.h
LIBS ${TEST_LIBRARIES})