#pull in the project's headers
|
|
include_directories( ${PROJECT_HEADER_DIR} )
|
|
|
|
#add ConfigStore unit test
|
|
ADD_EXECUTABLE( test_ConfigStore test_ConfigStore.cpp )
|
|
target_link_libraries( test_ConfigStore ModdingFramework)
|
|
ADD_TEST( ConfigStore test_ConfigStore )
|
|
|
|
#add ConfigLoader INI
|
|
ADD_EXECUTABLE( test_ConfigLoaderINI test_ConfigLoaderINI.cpp )
|
|
target_link_libraries( test_ConfigLoaderINI ModdingFramework)
|
|
ADD_TEST( ConfigLoaderINI test_ConfigLoaderINI )
|