Add ByteString support in CBOR wrapper in OIC stack
[platform/upstream/iotivity.git] / resource / csdk / stack / test / SConscript
index ade8f3f..507f011 100644 (file)
@@ -32,7 +32,7 @@ stacktest_env.PrependUnique(CPPPATH = [
                '../../security/include',
                '../../ocsocket/include',
                '../../logger/include',
-               '../../ocrandom/include',
+               '../../../c_common/ocrandom/include',
                '../../stack/include',
                '../../stack/include/internal',
                '../../connectivity/api',
@@ -69,8 +69,9 @@ if env.get('LOGGING'):
 # Source files and Targets
 ######################################################################
 stacktests = stacktest_env.Program('stacktests', ['stacktests.cpp'])
+cbortests = stacktest_env.Program('cbortests', ['cbortests.cpp'])
 
-Alias("test", [stacktests])
+Alias("test", [stacktests, cbortests])
 
 env.AppendTarget('test')
 if env.get('TEST') == '1':