move vectorTest to test from example
authorsubhransu mohanty <sub.mohanty@samsung.com>
Wed, 10 Jul 2019 10:31:14 +0000 (19:31 +0900)
committerJunsuChoi <jsuya.choi@samsung.com>
Thu, 18 Jul 2019 11:04:28 +0000 (20:04 +0900)
example/meson.build
example/vectortest.cpp [deleted file]
test/meson.build
test/vectortest.cpp [new file with mode: 0644]

index 9df49ef7d2c6aaeb801a5d2278d59ef8df8ee015..dd5aa935fac665083acdd441770239dca2b21133 100644 (file)
@@ -13,11 +13,6 @@ executable('lottie2gif',
            override_options : override_default,
            link_with : rlottie_lib)
 
-executable('vectorTest',
-           'vectortest.cpp',
-           include_directories : inc,
-           dependencies : [rlottie_lib_dep])
-
 demo_dep = dependency('elementary', required : false, disabler : true)
 
 executable('demo',
diff --git a/example/vectortest.cpp b/example/vectortest.cpp
deleted file mode 100644 (file)
index a43afe5..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* 
- * Copyright (c) 2018 Samsung Electronics Co., Ltd. All rights reserved.
- * 
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- * 
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- * 
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include<iostream>
-
-#include "vinterpolator.h"
-
-int main()
-{
-    return 0;
-}
index 2b982dc5f589b653035be5c5ed434d99217f5e0c..a54c84720a21911b130cefebae54555041bfaf6c 100644 (file)
@@ -33,3 +33,8 @@ animation_testsuite = executable('animationTestSuite',
                               )
 
 test('Animation Testsuite', animation_testsuite)
+
+executable('vectorTest',
+           'vectortest.cpp',
+           include_directories : inc,
+           dependencies : [rlottie_lib_dep])
diff --git a/test/vectortest.cpp b/test/vectortest.cpp
new file mode 100644 (file)
index 0000000..a43afe5
--- /dev/null
@@ -0,0 +1,26 @@
+/* 
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd. All rights reserved.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include<iostream>
+
+#include "vinterpolator.h"
+
+int main()
+{
+    return 0;
+}