Created SubstitutionField class.

This commit is contained in:
Jim Evins
2017-11-18 22:36:43 -05:00
parent 7b36ab4943
commit 8bcec37d7c
8 changed files with 666 additions and 7 deletions
+13
View File
@@ -0,0 +1,13 @@
if (Qt5Test_FOUND)
include_directories (..)
#=======================================
# Test SubstitutionField class
#=======================================
qt5_wrap_cpp (TestSubstitutionField_moc_sources TestSubstitutionField.h)
add_executable (TestSubstitutionField TestSubstitutionField.cpp ${TestSubstitutionField_moc_sources})
target_link_libraries (TestSubstitutionField Merge ${Qt5Core_LIBRARIES} ${Qt5Test_LIBRARIES} )
add_test (NAME SubstitutionField COMMAND TestSubstitutionField)
endif (Qt5Test_FOUND)